mirror of https://github.com/portainer/portainer
feat(auth): don't clear client secret on update
parent
2ee6f2780b
commit
996319d299
|
@ -71,7 +71,12 @@ func (handler *Handler) settingsUpdate(w http.ResponseWriter, r *http.Request) *
|
||||||
}
|
}
|
||||||
|
|
||||||
if payload.OAuthSettings != nil {
|
if payload.OAuthSettings != nil {
|
||||||
|
clientSecret := payload.OAuthSettings.ClientSecret
|
||||||
|
if clientSecret == "" {
|
||||||
|
clientSecret = settings.OAuthSettings.ClientSecret
|
||||||
|
}
|
||||||
settings.OAuthSettings = *payload.OAuthSettings
|
settings.OAuthSettings = *payload.OAuthSettings
|
||||||
|
settings.OAuthSettings.ClientSecret = clientSecret
|
||||||
}
|
}
|
||||||
|
|
||||||
if payload.AllowBindMountsForRegularUsers != nil {
|
if payload.AllowBindMountsForRegularUsers != nil {
|
||||||
|
|
Loading…
Reference in New Issue