Merged in fix/sso-logout (pull request #398)
Use client_id to avoid error message in new Keycloak version
This commit is contained in:
commit
cd001a1269
|
|
@ -10,7 +10,7 @@ let logoutRedirectUrl = import.meta.env.VITE_LOGOUT_REDIRECT || "/";
|
|||
if (import.meta.env.VITE_OAUTH_API_BASE_URL) {
|
||||
logoutRedirectUrl = `${
|
||||
import.meta.env.VITE_OAUTH_API_BASE_URL
|
||||
}logout/?post_logout_redirect_uri=${window.location.origin}`;
|
||||
}logout/?post_logout_redirect_uri=${window.location.origin}&client_id=iterativ`;
|
||||
}
|
||||
|
||||
const AVAILABLE_LANGUAGES = ["de", "fr", "it"];
|
||||
|
|
|
|||
Loading…
Reference in New Issue