From 124b3713123970461f42455ca119ff1ddcbfb031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Fri, 24 May 2019 15:55:07 +0200 Subject: [PATCH] Add support for tracing in LDAP (#10920) --- model/config.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/model/config.go b/model/config.go index b570642263..0e3672954a 100644 --- a/model/config.go +++ b/model/config.go @@ -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 {