Skip to content

Commit

Permalink
[MM-55215] Remove deprecated LdapSettings.Trace (mattermost#27376)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei authored Jul 13, 2024
1 parent bbc8baa commit a4bdb65
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions server/public/model/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit a4bdb65

Please sign in to comment.