Changeset 299af01 for src/app/api/invoices
- Timestamp:
- 02/26/25 14:27:26 (6 weeks ago)
- Branches:
- main
- Children:
- 3c5302a
- Parents:
- 057453c
- Location:
- src/app/api/invoices
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/api/invoices/[id]/route.ts
r057453c r299af01 90 90 // Conditionally delete and recreate items only if they are provided 91 91 if (validation.data.items) { 92 await tx. invoiceItem.deleteMany({92 await tx.lineItem.deleteMany({ 93 93 where: { invoiceId: params.id }, 94 94 }); … … 174 174 await prisma.$transaction(async (tx) => { 175 175 // Delete related items first 176 await tx. invoiceItem.deleteMany({176 await tx.lineItem.deleteMany({ 177 177 where: { invoiceId: params.id }, 178 178 }); -
src/app/api/invoices/route.ts
r057453c r299af01 24 24 try { 25 25 const userId = await getUserId(request); 26 if (!userId) {27 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });28 }26 // if (!userId) { 27 // return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 28 // } 29 29 30 30 const searchParams = request.nextUrl.searchParams; … … 74 74 try { 75 75 const userId = await getUserId(request); 76 if (!userId) {77 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });78 }76 // if (!userId) { 77 // return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 78 // } 79 79 80 80 const body = await request.json();
Note:
See TracChangeset
for help on using the changeset viewer.