[MM-55215] Remove deprecated LdapSettings.Trace (#27376)

Этот коммит содержится в:
Ben Schumacher
2024-07-13 10:31:33 +02:00
коммит произвёл GitHub
родитель bbc8baac0a
Коммит a4bdb65037

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

@@ -2356,9 +2356,6 @@ type LdapSettings struct {
LoginButtonColor *string `access:"experimental_features"` LoginButtonColor *string `access:"experimental_features"`
LoginButtonBorderColor *string `access:"experimental_features"` LoginButtonBorderColor *string `access:"experimental_features"`
LoginButtonTextColor *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() { func (s *LdapSettings) SetDefaults() {
@@ -2500,10 +2497,6 @@ func (s *LdapSettings) SetDefaults() {
if s.LoginButtonTextColor == nil { if s.LoginButtonTextColor == nil {
s.LoginButtonTextColor = NewString("#2389D7") s.LoginButtonTextColor = NewString("#2389D7")
} }
if s.Trace == nil {
s.Trace = NewBool(false)
}
} }
type ComplianceSettings struct { type ComplianceSettings struct {