main
Last change
on this file was 299af01, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago |
chore
|
-
Property mode
set to
100644
|
File size:
990 bytes
|
Line | |
---|
1 | import { NextRequest, NextResponse } from 'next/server';
|
---|
2 | import { customerSchema } from 'src/schemas';
|
---|
3 | import prisma from 'src/lib/prisma';
|
---|
4 | import { authenticateRequest } from 'src/lib/auth-middleware';
|
---|
5 |
|
---|
6 | export async function PATCH(request: NextRequest, { params }: { params: { id: string } }) {
|
---|
7 | try {
|
---|
8 | const auth = await authenticateRequest(request);
|
---|
9 | if (!auth || auth instanceof NextResponse) {
|
---|
10 | return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
---|
11 | }
|
---|
12 |
|
---|
13 | const { userId, tenantId } = auth;
|
---|
14 |
|
---|
15 | const body = await request.json();
|
---|
16 | const validatedData = customerSchema.partial().parse(body);
|
---|
17 |
|
---|
18 | console.log('validatedData', validatedData);
|
---|
19 |
|
---|
20 | const customer = await prisma.client.update({
|
---|
21 | where: { id: params.id },
|
---|
22 | data: {
|
---|
23 | ...validatedData,
|
---|
24 | tenantId,
|
---|
25 | },
|
---|
26 | });
|
---|
27 |
|
---|
28 | return NextResponse.json(customer);
|
---|
29 | } catch (error) {
|
---|
30 | return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 });
|
---|
31 | }
|
---|
32 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.