Add post-logout redirect URI to OIDC config
Redirects users back to the app home page after SSO logout instead of leaving them stranded on the Authentik end-session page.
This commit is contained in:
parent
a8b7eace48
commit
c76a7ac028
1 changed files with 1 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ export const oidcConfig = {
|
|||
authority: "https://authentik.viktorbarzin.me/application/o/wrongmove/",
|
||||
client_id: "5AJKRgcdgVm1OyApBzFkadDFfStW9a555zwv2MOe",
|
||||
redirect_uri: import.meta.env.MODE === 'development' ? "https://localhost/callback" : "https://wrongmove.viktorbarzin.me/callback",
|
||||
post_logout_redirect_uri: import.meta.env.MODE === 'development' ? "https://localhost/" : "https://wrongmove.viktorbarzin.me/",
|
||||
userStore: new WebStorageStateStore({ store: window.localStorage }),
|
||||
response_type: 'code', // PKCE flow (recommended for SPAs)
|
||||
scope: 'openid profile email', // Requested scopes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue