From 66302ff05a04cdcc7d0b0fcdbe6c75c77f25c7a6 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Fri, 27 Dec 2024 21:45:28 +0100 Subject: [PATCH] uri to login --- 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 1c0ac69..3c23719 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}`; + const url = `https://sso.beantastic.de?client_id=ffc46841-26f8-4946-a57a-5a9f8f21bc13&redirect_uri=${environment.location}&response_type=code&scope=profile`; location.href = url; } }