summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-07-05 14:02:00 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2016-07-05 14:02:00 -0400
commitf89e7c6d543a82d6078c2ca0f892914d7976a6f5 (patch)
treee8f25ad982e61db2eb6f20d4e845985ed999d4aa /utils/config.go
parent8b918efd3fba4d0f8efc576ce03df36de4ea8648 (diff)
downloadchat-f89e7c6d543a82d6078c2ca0f892914d7976a6f5.tar.gz
chat-f89e7c6d543a82d6078c2ca0f892914d7976a6f5.tar.bz2
chat-f89e7c6d543a82d6078c2ca0f892914d7976a6f5.zip
Sanitize personal information out of license for non system admin users (#3487)
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/utils/config.go b/utils/config.go
index 58980ba7f..5ebf29e3e 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -230,7 +230,6 @@ func getClientConfig(c *model.Config) map[string]string {
props["EnableSignInWithEmail"] = strconv.FormatBool(*c.EmailSettings.EnableSignInWithEmail)
props["EnableSignInWithUsername"] = strconv.FormatBool(*c.EmailSettings.EnableSignInWithUsername)
props["RequireEmailVerification"] = strconv.FormatBool(c.EmailSettings.RequireEmailVerification)
- props["FeedbackEmail"] = c.EmailSettings.FeedbackEmail
props["EnableSignUpWithGitLab"] = strconv.FormatBool(c.GitLabSettings.Enable)
props["EnableSignUpWithGoogle"] = strconv.FormatBool(c.GoogleSettings.Enable)