summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
authorChris Duarte <csduarte@users.noreply.github.com>2018-01-02 13:36:31 -0800
committerChristopher Speller <crspeller@gmail.com>2018-01-02 13:36:31 -0800
commit15cc4497588537f3f9b81d6f97228fae946fa008 (patch)
treeb15e6105d7df95fb4c3694b2b9eb1c85da64a0dd /utils/config.go
parentdf09f87defff859215cc54113e8a5286595cbe80 (diff)
downloadchat-15cc4497588537f3f9b81d6f97228fae946fa008.tar.gz
chat-15cc4497588537f3f9b81d6f97228fae946fa008.tar.bz2
chat-15cc4497588537f3f9b81d6f97228fae946fa008.zip
Add color properties to config to white label login buttons (#7826)
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/config.go b/utils/config.go
index 8435c36cf..5dcceba75 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -501,6 +501,10 @@ func getClientConfig(c *model.Config) map[string]string {
props["EnableEmailBatching"] = strconv.FormatBool(*c.EmailSettings.EnableEmailBatching)
props["EmailNotificationContentsType"] = *c.EmailSettings.EmailNotificationContentsType
+ props["EmailLoginButtonColor"] = *c.EmailSettings.LoginButtonColor
+ props["EmailLoginButtonBorderColor"] = *c.EmailSettings.LoginButtonBorderColor
+ props["EmailLoginButtonTextColor"] = *c.EmailSettings.LoginButtonTextColor
+
props["EnableSignUpWithGitLab"] = strconv.FormatBool(c.GitLabSettings.Enable)
props["ShowEmailAddress"] = strconv.FormatBool(c.PrivacySettings.ShowEmailAddress)
@@ -562,6 +566,9 @@ func getClientConfig(c *model.Config) map[string]string {
props["LdapNicknameAttributeSet"] = strconv.FormatBool(*c.LdapSettings.NicknameAttribute != "")
props["LdapFirstNameAttributeSet"] = strconv.FormatBool(*c.LdapSettings.FirstNameAttribute != "")
props["LdapLastNameAttributeSet"] = strconv.FormatBool(*c.LdapSettings.LastNameAttribute != "")
+ props["LdapLoginButtonColor"] = *c.LdapSettings.LoginButtonColor
+ props["LdapLoginButtonBorderColor"] = *c.LdapSettings.LoginButtonBorderColor
+ props["LdapLoginButtonTextColor"] = *c.LdapSettings.LoginButtonTextColor
}
if *License.Features.MFA {
@@ -579,6 +586,9 @@ func getClientConfig(c *model.Config) map[string]string {
props["SamlFirstNameAttributeSet"] = strconv.FormatBool(*c.SamlSettings.FirstNameAttribute != "")
props["SamlLastNameAttributeSet"] = strconv.FormatBool(*c.SamlSettings.LastNameAttribute != "")
props["SamlNicknameAttributeSet"] = strconv.FormatBool(*c.SamlSettings.NicknameAttribute != "")
+ props["SamlLoginButtonColor"] = *c.SamlSettings.LoginButtonColor
+ props["SamlLoginButtonBorderColor"] = *c.SamlSettings.LoginButtonBorderColor
+ props["SamlLoginButtonTextColor"] = *c.SamlSettings.LoginButtonTextColor
}
if *License.Features.Cluster {