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

This commit is contained in:
Ben Schumacher 2024-07-13 10:31:33 +02:00 committed by GitHub
parent bbc8baac0a
commit a4bdb65037
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 {