Skip to content

Commit

Permalink
🛂 Removes /auth from KC path (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Mar 26, 2022
1 parent 1f3ed13 commit fd2b3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/KeycloakAuth.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class KeycloakAuth {
const { auth } = getAppConfig();
const { serverUrl, realm, clientId } = auth.keycloak;
const initOptions = {
url: `${serverUrl}/auth`, realm, clientId, onLoad: 'login-required',
url: `${serverUrl}`, realm, clientId, onLoad: 'login-required',
};

this.keycloakClient = Keycloak(initOptions);
Expand Down

0 comments on commit fd2b3d8

Please sign in to comment.