From a40af6a4d0c31f780287e2964ea2e584abb73e04 Mon Sep 17 00:00:00 2001 From: Matthieu Haineault Date: Fri, 19 Dec 2025 10:11:29 -0500 Subject: [PATCH] fix():small fix to redirect --- .../authentication/controllers/auth.controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/identity-and-account/authentication/controllers/auth.controller.ts b/src/identity-and-account/authentication/controllers/auth.controller.ts index 0b09814..3259f65 100644 --- a/src/identity-and-account/authentication/controllers/auth.controller.ts +++ b/src/identity-and-account/authentication/controllers/auth.controller.ts @@ -12,8 +12,8 @@ export class AuthController { @Get('/callback') @UseGuards(OIDCLoginGuard) loginCallback(@Req() req: Request, @Res() res: Response) { - res.redirect('REDIRECT_URL_STAGING'); - // res.redirect('REDIRECT_URL_DEV'); + res.redirect('process.env.REDIRECT_URL_STAGING'); + // res.redirect('process.env.REDIRECT_URL_DEV'); } @Get('/me')