Changeset 299af01 for src/app/api/invoices/route.ts
- Timestamp:
- 02/26/25 14:27:26 (6 weeks ago)
- Branches:
- main
- Children:
- 3c5302a
- Parents:
- 057453c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.