From 552000fabf60a9e4c71476c52c46f7cded5fe4c4 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Fri, 13 Feb 2026 10:54:28 +0100 Subject: [PATCH] url geupdatet --- client/src/app/core/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/core/auth/auth.service.ts b/client/src/app/core/auth/auth.service.ts index 3c23719..2f9fb2e 100644 --- a/client/src/app/core/auth/auth.service.ts +++ b/client/src/app/core/auth/auth.service.ts @@ -119,7 +119,7 @@ export class AuthService { } public routeToLogin() { - const url = `https://sso.beantastic.de?client_id=ffc46841-26f8-4946-a57a-5a9f8f21bc13&redirect_uri=${environment.location}&response_type=code&scope=profile`; + const url = `https://valgard.xyz/authorize?client_id=ffc46841-26f8-4946-a57a-5a9f8f21bc13&redirect_uri=${encodeURIComponent(environment.location)}&response_type=code&scope=profile`; location.href = url; } }