Add support for tracing in LDAP (#10920)

Этот коммит содержится в:
Jesús Espino
2019-05-24 15:55:07 +02:00
коммит произвёл Martin Kraft
родитель 1269db8691
Коммит 124b371312

Просмотреть файл

@@ -1642,6 +1642,8 @@ type LdapSettings struct {
LoginButtonColor *string
LoginButtonBorderColor *string
LoginButtonTextColor *string
Trace *bool
}
func (s *LdapSettings) SetDefaults() {
@@ -1759,6 +1761,10 @@ func (s *LdapSettings) SetDefaults() {
if s.LoginButtonTextColor == nil {
s.LoginButtonTextColor = NewString("#2389D7")
}
if s.Trace == nil {
s.Trace = NewBool(false)
}
}
type ComplianceSettings struct {