summaryrefslogtreecommitdiffstats
path: root/src/app/modules/auth/auth.config.ts
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-05-28 16:11:55 +0200
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-05-28 16:11:55 +0200
commit24338bc2f78841a0475d91b49eb9458767ab97e9 (patch)
tree7907640c259c97f4205d2d96f8299d205080cd8c /src/app/modules/auth/auth.config.ts
parentddbdfd860e214a87027ca22ef62082a75434587b (diff)
Adjust keycloak auth url after KeycloakX upgrade0.1.1
- remove /auth from auth url after KeycloakX upgrade - increase version to 0.1.1 Issue-ID: PORTALNG-109 Change-Id: I74182d3f8a8eca3a1a341622076980e6be544cd5 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'src/app/modules/auth/auth.config.ts')
-rw-r--r--src/app/modules/auth/auth.config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/modules/auth/auth.config.ts b/src/app/modules/auth/auth.config.ts
index 8f8035e..5a7ad9e 100644
--- a/src/app/modules/auth/auth.config.ts
+++ b/src/app/modules/auth/auth.config.ts
@@ -22,7 +22,7 @@ import { environment } from '../../../environments/environment';
export const authConfig: AuthConfig = {
// Url of the Identity Provider
- issuer: `${environment.keycloak.hostname}/auth/realms/${environment.keycloak.realm}`,
+ issuer: `${environment.keycloak.hostname}/realms/${environment.keycloak.realm}`,
// URL of the SPA to redirect the user to after login
redirectUri: environment.keycloak.redirectUri,