main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
848 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { NextRequest, NextResponse } from 'next/server';
|
---|
| 2 | import { customerSchema } from 'mvpmasters-shared';
|
---|
| 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 userId = await authenticateRequest(request);
|
---|
| 9 | if (!userId) {
|
---|
| 10 | return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | const body = await request.json();
|
---|
| 14 | const validatedData = customerSchema.partial().parse(body);
|
---|
| 15 |
|
---|
| 16 | const customer = await prisma.customer.update({
|
---|
| 17 | where: { id: params.id, userId },
|
---|
| 18 | data: validatedData,
|
---|
| 19 | });
|
---|
| 20 |
|
---|
| 21 | return NextResponse.json(customer);
|
---|
| 22 | } catch (error) {
|
---|
| 23 | return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 });
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.