mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 04:57:33 +00:00
@@ -136,6 +136,20 @@ func (c *Client) IDTokenUserinfoClaimsAssertion() bool {
|
||||
return c.client.IDTokenUserinfoAssertion
|
||||
}
|
||||
|
||||
func (c *Client) RedirectURIGlobs() []string {
|
||||
if c.DevMode() {
|
||||
return c.RedirectURIs()
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *Client) PostLogoutRedirectURIGlobs() []string {
|
||||
if c.DevMode() {
|
||||
return c.PostLogoutRedirectURIs()
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func accessTokenTypeToOIDC(tokenType domain.OIDCTokenType) op.AccessTokenType {
|
||||
switch tokenType {
|
||||
case domain.OIDCTokenTypeBearer:
|
||||
|
Reference in New Issue
Block a user