Skip to content

Commit

Permalink
fix: logout redirect uri (#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGedd authored Oct 22, 2024
1 parent 100d35b commit 8e2b5d8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit 8e2b5d8

Please sign in to comment.