From 6dae8df0d31dbbacf283c18aed92be29c20a40f3 Mon Sep 17 00:00:00 2001 From: Matthieu Haineault Date: Tue, 6 Jan 2026 10:04:52 -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 dc526e9..d0a2523 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')