From 8e2b5d840bcddc7af299ff8845836c08a54a35c8 Mon Sep 17 00:00:00 2001 From: UncleGedd <42304551+UncleGedd@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:32:02 -0500 Subject: [PATCH] fix: logout redirect uri (#945) --- .../operator/controllers/keycloak/authservice/authservice.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pepr/operator/controllers/keycloak/authservice/authservice.ts b/src/pepr/operator/controllers/keycloak/authservice/authservice.ts index b3d74c67c..ca52198d2 100644 --- a/src/pepr/operator/controllers/keycloak/authservice/authservice.ts +++ b/src/pepr/operator/controllers/keycloak/authservice/authservice.ts @@ -114,8 +114,8 @@ export function buildChain(update: AuthServiceEvent) { client_secret: update.client!.secret, scopes: [], logout: { - path: "/local", - redirect_uri: `https://sso.${UDSConfig.domain}/realms/${operatorConfig.realm}/protocol/openid-connect/token/logout`, + path: "/logout", + redirect_uri: `https://sso.${UDSConfig.domain}/realms/${operatorConfig.realm}/protocol/openid-connect/logout`, }, cookie_name_prefix: update.client!.clientId, },