summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-10-08 09:56:00 -0400
committerChristopher Speller <crspeller@gmail.com>2015-10-08 09:56:00 -0400
commit7571d21f3200738199981c21b9466e0028d4fcbb (patch)
tree0341429b34bb249e52092e4196b451167e2e324c /utils/config.go
parent2ebcb3f69dd9db52cdea476f0e543eaed3420efd (diff)
parentc84fe62ca199485dccefc37e00ca2bef45d47c6d (diff)
downloadchat-7571d21f3200738199981c21b9466e0028d4fcbb.tar.gz
chat-7571d21f3200738199981c21b9466e0028d4fcbb.tar.bz2
chat-7571d21f3200738199981c21b9466e0028d4fcbb.zip
Merge pull request #931 from rgarmsen2295/plt-112
PLT-112 Improves email change verification process
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/config.go b/utils/config.go
index 90e44259a..0eea6dd6a 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -191,6 +191,7 @@ func getClientProperties(c *model.Config) map[string]string {
props["SendEmailNotifications"] = strconv.FormatBool(c.EmailSettings.SendEmailNotifications)
props["EnableSignUpWithEmail"] = strconv.FormatBool(c.EmailSettings.EnableSignUpWithEmail)
+ props["RequireEmailVerification"] = strconv.FormatBool(c.EmailSettings.RequireEmailVerification)
props["FeedbackEmail"] = c.EmailSettings.FeedbackEmail
props["EnableSignUpWithGitLab"] = strconv.FormatBool(c.GitLabSettings.Enable)