add doc for new env

This commit is contained in:
Anderson Valério 2024-12-27 10:19:59 -03:00
parent 92e7960b6c
commit 72f89818fa
No known key found for this signature in database
GPG Key ID: 92D38E56BFF005A0
2 changed files with 2 additions and 0 deletions

View File

@ -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 |
| `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 |
| `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
#### (`string` alias)

View File

@ -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
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"`
}