summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-10-19 14:24:02 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-10-19 14:24:02 -0400
commitd139c9e825d0149329d90684ebe2d6b31a728b16 (patch)
tree484dfe912010791e4eef9fa0152a4b1e3ba987e9 /utils
parentfd69910fab332642a7793e64064169e89eb0c3de (diff)
parentc7d00de68291f5a53353c1391d4548d3f2ec7c0c (diff)
downloadchat-d139c9e825d0149329d90684ebe2d6b31a728b16.tar.gz
chat-d139c9e825d0149329d90684ebe2d6b31a728b16.tar.bz2
chat-d139c9e825d0149329d90684ebe2d6b31a728b16.zip
Merge pull request #1108 from mattermost/plt-235
PLT-235 Implement outgoing webhooks.
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 2c6f30bf0..e3349650b 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -188,6 +188,7 @@ func getClientProperties(c *model.Config) map[string]string {
props["SegmentDeveloperKey"] = c.ServiceSettings.SegmentDeveloperKey
props["GoogleDeveloperKey"] = c.ServiceSettings.GoogleDeveloperKey
props["EnableIncomingWebhooks"] = strconv.FormatBool(c.ServiceSettings.EnableIncomingWebhooks)
+ props["EnableOutgoingWebhooks"] = strconv.FormatBool(c.ServiceSettings.EnableOutgoingWebhooks)
props["EnablePostUsernameOverride"] = strconv.FormatBool(c.ServiceSettings.EnablePostUsernameOverride)
props["EnablePostIconOverride"] = strconv.FormatBool(c.ServiceSettings.EnablePostIconOverride)