From 24338bc2f78841a0475d91b49eb9458767ab97e9 Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Tue, 28 May 2024 16:11:55 +0200 Subject: Adjust keycloak auth url after KeycloakX upgrade - 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 --- src/app/modules/auth/auth.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/app/modules') 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, -- cgit