Ignore:
Timestamp:
02/27/25 00:42:38 (5 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
32e9876
Parents:
3c5302a
Message:

update the seed script. update the prisma schema, use mapping

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lib/auth-middleware.ts

    r3c5302a r87c9f1e  
    2121  try {
    2222    // 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;
    2625
    27     // if (!userId || !tenantId) {
    28     //   return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
    29     // }
     26    const tenantId = decodedToken.customClaims?.tenantId || 'cm7lxc3p00000pb7kmdrxsfod';
    3027
    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' };
    3233  } catch (error) {
     34    console.error('Error verifying token:', error);
    3335    return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
    3436  }
Note: See TracChangeset for help on using the changeset viewer.