From 2a6f9eb2ac0f3713c4d87829da9e34e8a6649c94 Mon Sep 17 00:00:00 2001 From: Matthieu Haineault Date: Tue, 6 Jan 2026 09:46:19 -0500 Subject: [PATCH] fix(url): switch redirect to right url for staging container --- .../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 d0a2523..dc526e9 100644 --- a/src/identity-and-account/authentication/controllers/auth.controller.ts +++ b/src/identity-and-account/authentication/controllers/auth.controller.ts @@ -17,8 +17,8 @@ export class AuthController { @Get('/callback') @UseGuards(OIDCLoginGuard) loginCallback(@Req() req: Request, @Res() res: Response) { - // res.redirect("http://10.100.251.2:9013/#/v1/login-success"); - res.redirect(process.env.REDIRECT_URL_DEV!); + res.redirect("http://10.100.251.2:9013/#/v1/login-success"); + // res.redirect(process.env.REDIRECT_URL_DEV!); } @Get('/me')