Changeset 87c9f1e for src/lib/auth-middleware.ts
- Timestamp:
- 02/27/25 00:42:38 (5 weeks ago)
- Branches:
- main
- Children:
- 32e9876
- Parents:
- 3c5302a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lib/auth-middleware.ts
r3c5302a r87c9f1e 21 21 try { 22 22 // Verify the token 23 // const decodedToken = await auth.verifyIdToken(token); 24 // const userId = decodedToken.uid; 25 // const tenantId = decodedToken.customClaims?.tenantId || 'cm7lxc3p00000pb7kmdrxsfod'; 23 const decodedToken = await auth.verifyIdToken(token); 24 const userId = decodedToken.uid; 26 25 27 // if (!userId || !tenantId) { 28 // return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 29 // } 26 const tenantId = decodedToken.customClaims?.tenantId || 'cm7lxc3p00000pb7kmdrxsfod'; 30 27 31 return { userId: 'nlswimR6mMQtirTNlMeqhqcSZeD3', tenantId: 'cm7lxc3p00000pb7kmdrxsfod' }; 28 if (!userId || !tenantId) { 29 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 30 } 31 32 return { userId, tenantId: 'cm7lxc3p00000pb7kmdrxsfod' }; 32 33 } catch (error) { 34 console.error('Error verifying token:', error); 33 35 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 34 36 }
Note:
See TracChangeset
for help on using the changeset viewer.