From ae3865b5397b798f85151c51ec4e37187fc5f25a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Tue, 28 Aug 2018 19:49:01 +0200 Subject: MM-10532: Add EnableSyncWithLdapIncludeAuth config (#9319) --- model/config.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'model') diff --git a/model/config.go b/model/config.go index 7fc5c567a..c0f443b72 100644 --- a/model/config.go +++ b/model/config.go @@ -1457,8 +1457,9 @@ func (s *LocalizationSettings) SetDefaults() { type SamlSettings struct { // Basic - Enable *bool - EnableSyncWithLdap *bool + Enable *bool + EnableSyncWithLdap *bool + EnableSyncWithLdapIncludeAuth *bool Verify *bool Encrypt *bool @@ -1500,6 +1501,10 @@ func (s *SamlSettings) SetDefaults() { s.EnableSyncWithLdap = NewBool(false) } + if s.EnableSyncWithLdapIncludeAuth == nil { + s.EnableSyncWithLdapIncludeAuth = NewBool(false) + } + if s.Verify == nil { s.Verify = NewBool(true) } -- cgit v1.2.3-1-g7c22