elide client_secret in cf.Dump (#404)

This commit is contained in:
Michael Quigley 2023-09-26 13:43:42 -04:00
parent adbe4e78c0
commit 7f6f2de5e8
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -36,7 +36,7 @@ func (oc *OauthConfig) GetProvider(name string) *OauthProviderConfig {
type OauthProviderConfig struct {
Name string
ClientId string
ClientSecret string
ClientSecret string `cf:"+secret"`
}
func DefaultConfig() *Config {