summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-12-14 11:34:16 -0800
committer=Corey Hulen <corey@hulen.com>2015-12-14 11:34:16 -0800
commitc7c03817d05c05d5bc3f1a59ee0b06a47048ff4b (patch)
treee66774920eedebe63d7afe072a85e5012e265d0d /utils
parentf5ec973cba4c224de5ba75b56aad447f715b9d6b (diff)
downloadchat-c7c03817d05c05d5bc3f1a59ee0b06a47048ff4b.tar.gz
chat-c7c03817d05c05d5bc3f1a59ee0b06a47048ff4b.tar.bz2
chat-c7c03817d05c05d5bc3f1a59ee0b06a47048ff4b.zip
Adding error bar message when console error detected
Diffstat (limited to 'utils')
-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)