summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-12-15 07:07:06 -0500
committerChristopher Speller <crspeller@gmail.com>2015-12-15 07:07:06 -0500
commit697e901f152e083f3c03483784037a679dfcaa04 (patch)
tree47de0e776d61559dd15ccbbaeb68a014545a306f /utils/config.go
parent1d4ce0f48901ced50f6225c70f102c9fbc661749 (diff)
parentdff586fa7441ce8aa1001c521908bdf957a77e1b (diff)
downloadchat-697e901f152e083f3c03483784037a679dfcaa04.tar.gz
chat-697e901f152e083f3c03483784037a679dfcaa04.tar.bz2
chat-697e901f152e083f3c03483784037a679dfcaa04.zip
Merge pull request #1725 from mattermost/fix-console-err
Adding error bar message when console error detected
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 0789c101d..3f451b88a 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -195,6 +195,7 @@ func getClientConfig(c *model.Config) map[string]string {
props["EnableOutgoingWebhooks"] = strconv.FormatBool(c.ServiceSettings.EnableOutgoingWebhooks)
props["EnablePostUsernameOverride"] = strconv.FormatBool(c.ServiceSettings.EnablePostUsernameOverride)
props["EnablePostIconOverride"] = strconv.FormatBool(c.ServiceSettings.EnablePostIconOverride)
+ props["EnableDeveloper"] = strconv.FormatBool(*c.ServiceSettings.EnableDeveloper)
props["SendEmailNotifications"] = strconv.FormatBool(c.EmailSettings.SendEmailNotifications)
props["EnableSignUpWithEmail"] = strconv.FormatBool(c.EmailSettings.EnableSignUpWithEmail)