diff options
author | 2024-05-28 16:11:55 +0200 | |
---|---|---|
committer | 2024-05-28 16:11:55 +0200 | |
commit | 24338bc2f78841a0475d91b49eb9458767ab97e9 (patch) | |
tree | 7907640c259c97f4205d2d96f8299d205080cd8c /src/app/http-interceptors/caching-interceptor.ts | |
parent | ddbdfd860e214a87027ca22ef62082a75434587b (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/http-interceptors/caching-interceptor.ts')
-rw-r--r-- | src/app/http-interceptors/caching-interceptor.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/http-interceptors/caching-interceptor.ts b/src/app/http-interceptors/caching-interceptor.ts index df13376..d783a93 100644 --- a/src/app/http-interceptors/caching-interceptor.ts +++ b/src/app/http-interceptors/caching-interceptor.ts @@ -35,7 +35,7 @@ import { urlTileApi } from '../services/tileservice/tiles.service'; export class CachingInterceptor implements HttpInterceptor { private cachedUrls: Array<string> = [ urlTileApi, - window.location.origin + '/keycloak/auth/realms/ONAP/protocol/openid-connect/userinfo', + window.location.origin + '/keycloak/realms/ONAP/protocol/openid-connect/userinfo', ]; // cache is the cache service that supports get() and put() |