summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-12-08 14:06:52 -0800
committer=Corey Hulen <corey@hulen.com>2015-12-08 14:06:52 -0800
commitd2db4b16211965271289311666537fbccc2afccc (patch)
treeb2e4e69fc7a07f43c7e0bb9e5ca1d55b00ed5772 /model
parentf006951959acad76c8626d85fac3521d302bb0ee (diff)
downloadchat-d2db4b16211965271289311666537fbccc2afccc.tar.gz
chat-d2db4b16211965271289311666537fbccc2afccc.tar.bz2
chat-d2db4b16211965271289311666537fbccc2afccc.zip
Fixing defaults
Diffstat (limited to 'model')
-rw-r--r--model/config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/model/config.go b/model/config.go
index 869f975e6..14ce444c5 100644
--- a/model/config.go
+++ b/model/config.go
@@ -181,12 +181,12 @@ func (o *Config) SetDefaults() {
if o.EmailSettings.SendPushNotifications == nil {
o.EmailSettings.SendPushNotifications = new(bool)
- *o.EmailSettings.SendPushNotifications = true
+ *o.EmailSettings.SendPushNotifications = false
}
if o.EmailSettings.PushNotificationServer == nil {
o.EmailSettings.PushNotificationServer = new(string)
- *o.EmailSettings.PushNotificationServer = "https://push.mattermost.com"
+ *o.EmailSettings.PushNotificationServer = ""
}
}