Changeset 299af01 for src/app/api/customers/[id]/route.ts
- Timestamp:
- 02/26/25 14:27:26 (6 weeks ago)
- Branches:
- main
- Children:
- 3c5302a
- Parents:
- 057453c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/api/customers/[id]/route.ts
r057453c r299af01 6 6 export async function PATCH(request: NextRequest, { params }: { params: { id: string } }) { 7 7 try { 8 const userId= await authenticateRequest(request);9 if (! userId) {8 const auth = await authenticateRequest(request); 9 if (!auth || auth instanceof NextResponse) { 10 10 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 11 11 } 12 12 13 const { userId, tenantId } = auth; 14 13 15 const body = await request.json(); 14 16 const validatedData = customerSchema.partial().parse(body); 17 18 console.log('validatedData', validatedData); 15 19 16 20 const customer = await prisma.client.update({ … … 18 22 data: { 19 23 ...validatedData, 20 bankAccounts: undefined,24 tenantId, 21 25 }, 22 26 });
Note:
See TracChangeset
for help on using the changeset viewer.