diff --git a/server/public/model/config.go b/server/public/model/config.go index a87632e5dfe..d416ff56575 100644 --- a/server/public/model/config.go +++ b/server/public/model/config.go @@ -2356,9 +2356,6 @@ type LdapSettings struct { LoginButtonColor *string `access:"experimental_features"` LoginButtonBorderColor *string `access:"experimental_features"` LoginButtonTextColor *string `access:"experimental_features"` - - // Deprecated: Use LogSettings.AdvancedLoggingJSON with the LDAPTrace level instead. - Trace *bool `access:"authentication_ldap"` // telemetry: none } func (s *LdapSettings) SetDefaults() { @@ -2500,10 +2497,6 @@ func (s *LdapSettings) SetDefaults() { if s.LoginButtonTextColor == nil { s.LoginButtonTextColor = NewString("#2389D7") } - - if s.Trace == nil { - s.Trace = NewBool(false) - } } type ComplianceSettings struct {