* 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
20 lines
597 B
TypeScript
20 lines
597 B
TypeScript
import { redirect } from 'next/navigation';
|
|
import type { NextRequest } 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 { nextPath } = await service.exchangeCodeForSession(request, {
|
|
joinTeamPath: pathsConfig.app.joinTeam,
|
|
redirectPath: pathsConfig.app.home,
|
|
});
|
|
|
|
return redirect(nextPath);
|
|
}
|