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

chore

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.