Ignore:
Timestamp:
02/26/25 14:27:26 (6 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
3c5302a
Parents:
057453c
Message:

chore

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/app/api/customers/[id]/route.ts

    r057453c r299af01  
    66export async function PATCH(request: NextRequest, { params }: { params: { id: string } }) {
    77  try {
    8     const userId = await authenticateRequest(request);
    9     if (!userId) {
     8    const auth = await authenticateRequest(request);
     9    if (!auth || auth instanceof NextResponse) {
    1010      return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
    1111    }
    1212
     13    const { userId, tenantId } = auth;
     14
    1315    const body = await request.json();
    1416    const validatedData = customerSchema.partial().parse(body);
     17
     18    console.log('validatedData', validatedData);
    1519
    1620    const customer = await prisma.client.update({
     
    1822      data: {
    1923        ...validatedData,
    20         bankAccounts: undefined,
     24        tenantId,
    2125      },
    2226    });
Note: See TracChangeset for help on using the changeset viewer.