add doc for new env
This commit is contained in:
parent
92e7960b6c
commit
72f89818fa
|
|
@ -445,6 +445,7 @@ Provider holds all configuration for a single provider
|
||||||
| `allowedGroups` | _[]string_ | AllowedGroups is a list of restrict logins to members of this group |
|
| `allowedGroups` | _[]string_ | AllowedGroups is a list of restrict logins to members of this group |
|
||||||
| `code_challenge_method` | _string_ | The code challenge method |
|
| `code_challenge_method` | _string_ | The code challenge method |
|
||||||
| `backendLogoutURL` | _string_ | URL to call to perform backend logout, `{id_token}` would be replaced by the actual `id_token` if available in the session |
|
| `backendLogoutURL` | _string_ | URL to call to perform backend logout, `{id_token}` would be replaced by the actual `id_token` if available in the session |
|
||||||
|
| `backendLogoutAllSessionsURL` | _string_ | URL to call to perform backend logout, `{user_id}` would be replaced by the actual `user_id` if available in the session IntrospectClaims |
|
||||||
|
|
||||||
### ProviderType
|
### ProviderType
|
||||||
#### (`string` alias)
|
#### (`string` alias)
|
||||||
|
|
|
||||||
|
|
@ -89,6 +89,7 @@ type Provider struct {
|
||||||
// URL to call to perform backend logout, `{id_token}` would be replaced by the actual `id_token` if available in the session
|
// URL to call to perform backend logout, `{id_token}` would be replaced by the actual `id_token` if available in the session
|
||||||
BackendLogoutURL string `json:"backendLogoutURL"`
|
BackendLogoutURL string `json:"backendLogoutURL"`
|
||||||
|
|
||||||
|
// URL to call to perform backend logout, `{user_id}` would be replaced by the actual `user_id` if available in the session IntrospectClaims
|
||||||
BackendLogoutAllSessionsURL string `json:"backendLogoutAllSessionsURL"`
|
BackendLogoutAllSessionsURL string `json:"backendLogoutAllSessionsURL"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue