Ajout paramètre pour définir l'acr_value
This commit is contained in:
@ -54,6 +54,7 @@ type OIDCConfig struct {
|
||||
RedirectURL string `yaml:"redirectUrl" env:"OIDC_REDIRECT_URL"`
|
||||
PostLogoutRedirectURL string `yaml:"postLogoutRedirectURL" env:"OIDC_POST_LOGOUT_REDIRECT_URL"`
|
||||
InsecureSkipVerify bool `ymal:"insecureSkipVerify" env:"OIDC_INSECURE_SKIP_VERIFY"`
|
||||
AcrValues string `ymal:"acrValues" env:"OIDC_ACR_VALUES"`
|
||||
}
|
||||
|
||||
type LogConfig struct {
|
||||
@ -88,6 +89,7 @@ func NewDefault() *Config {
|
||||
RedirectURL: "http://localhost:3002/oauth2/callback",
|
||||
PostLogoutRedirectURL: "http://localhost:3002",
|
||||
InsecureSkipVerify: false,
|
||||
AcrValues: "",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user