Ignore:
Timestamp:
02/26/25 10:05:32 (5 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
299af01
Parents:
5d6f37a
Message:

feat: implement employees

File:
1 edited

Legend:

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

    r5d6f37a r057453c  
    44export interface AuthenticatedRequest extends NextRequest {
    55  userId: string;
     6  tenantId: string;
    67}
    78
    89export async function authenticateRequest(
    910  request: NextRequest
    10 ): Promise<{ userId: string } | NextResponse> {
     11): Promise<{ userId: string; tenantId: string } | NextResponse> {
    1112  // Get the authorization header
    1213  const authHeader = request.headers.get('Authorization');
     
    2223    const decodedToken = await auth.verifyIdToken(token);
    2324    const userId = decodedToken.uid;
     25    const tenantId = decodedToken.customClaims?.tenantId || 'cm7bwtjy80000pb0m5qenk8am';
    2426
    25     if (!userId) {
     27    if (!userId || !tenantId) {
    2628      return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
    2729    }
    2830
    29     return { userId };
     31    return { userId, tenantId };
    3032  } catch (error) {
    3133    return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
Note: See TracChangeset for help on using the changeset viewer.