* add doctor jobs view * change translation * another translation change * clean up * add analaysis detail view to paths config * translation * merge fix * fix path * move components to shared * refactor * imports * clean up
19 lines
554 B
TypeScript
19 lines
554 B
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
|
|
import { createAuthCallbackService } from '@kit/supabase/auth';
|
|
import { getSupabaseServerClient } from '@kit/supabase/server-client';
|
|
|
|
import { pathsConfig } from '@kit/shared/config';
|
|
|
|
|
|
export async function GET(request: NextRequest) {
|
|
const service = createAuthCallbackService(getSupabaseServerClient());
|
|
|
|
const url = await service.verifyTokenHash(request, {
|
|
joinTeamPath: pathsConfig.app.joinTeam,
|
|
redirectPath: pathsConfig.app.home,
|
|
});
|
|
|
|
return NextResponse.redirect(url);
|
|
}
|