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

chore

Location:
src/app/api/invoices
Files:
1 added
2 edited

Legend:

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

    r057453c r299af01  
    9090      // Conditionally delete and recreate items only if they are provided
    9191      if (validation.data.items) {
    92         await tx.invoiceItem.deleteMany({
     92        await tx.lineItem.deleteMany({
    9393          where: { invoiceId: params.id },
    9494        });
     
    174174    await prisma.$transaction(async (tx) => {
    175175      // Delete related items first
    176       await tx.invoiceItem.deleteMany({
     176      await tx.lineItem.deleteMany({
    177177        where: { invoiceId: params.id },
    178178      });
  • src/app/api/invoices/route.ts

    r057453c r299af01  
    2424  try {
    2525    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    // }
    2929
    3030    const searchParams = request.nextUrl.searchParams;
     
    7474  try {
    7575    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    // }
    7979
    8080    const body = await request.json();
Note: See TracChangeset for help on using the changeset viewer.