mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 08:49:13 +00:00
fix: vue logout url (#8353)
# Which Problems Are Solved The default vue logout URL doesn't work with the @zitadel/vue defaults # How the Problems Are Solved A trailing slash is added to the default logout URL. # Additional Context Found while testing https://github.com/zitadel/zitadel-vue/pull/53
This commit is contained in:
parent
91dcebbfc9
commit
c3f8439a49
@ -29,7 +29,7 @@ export const OIDC_CONFIGURATIONS: OidcAppConfigurations = {
|
|||||||
.setResponseTypesList([OIDCResponseType.OIDC_RESPONSE_TYPE_CODE])
|
.setResponseTypesList([OIDCResponseType.OIDC_RESPONSE_TYPE_CODE])
|
||||||
.setGrantTypesList([OIDCGrantType.OIDC_GRANT_TYPE_AUTHORIZATION_CODE])
|
.setGrantTypesList([OIDCGrantType.OIDC_GRANT_TYPE_AUTHORIZATION_CODE])
|
||||||
.setRedirectUrisList(['http://localhost:5173/auth/signinwin/zitadel'])
|
.setRedirectUrisList(['http://localhost:5173/auth/signinwin/zitadel'])
|
||||||
.setPostLogoutRedirectUrisList(['http://localhost:5173']),
|
.setPostLogoutRedirectUrisList(['http://localhost:5173/']),
|
||||||
// web applications
|
// web applications
|
||||||
['next']: new AddOIDCAppRequest()
|
['next']: new AddOIDCAppRequest()
|
||||||
.setAppType(OIDCAppType.OIDC_APP_TYPE_WEB)
|
.setAppType(OIDCAppType.OIDC_APP_TYPE_WEB)
|
||||||
|
Loading…
Reference in New Issue
Block a user