summaryrefslogtreecommitdiffstats
path: root/model/config.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-17 12:57:52 -0400
committerChristopher Speller <crspeller@gmail.com>2016-03-17 12:57:52 -0400
commitbd225dca738400495a8ef8fea0fc81fd11d225c7 (patch)
treeff9f6fa2e119e6dd62081d73b91a63aad9a55071 /model/config.go
parent876ef15ac126f0a9aec0b9ad4e98a35223641167 (diff)
parent919fb8274bc13beaa260602f8f77bbb5a526f1a3 (diff)
downloadchat-bd225dca738400495a8ef8fea0fc81fd11d225c7.tar.gz
chat-bd225dca738400495a8ef8fea0fc81fd11d225c7.tar.bz2
chat-bd225dca738400495a8ef8fea0fc81fd11d225c7.zip
Merge pull request #2418 from ZBoxApp/PLT-2053
PLT-2053: Option to enable full snippets in push notifications
Diffstat (limited to 'model/config.go')
-rw-r--r--model/config.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/model/config.go b/model/config.go
index 11ce260ee..d684c72b2 100644
--- a/model/config.go
+++ b/model/config.go
@@ -25,6 +25,9 @@ const (
WEBSERVER_MODE_REGULAR = "regular"
WEBSERVER_MODE_GZIP = "gzip"
WEBSERVER_MODE_DISABLED = "disabled"
+
+ GENERIC_NOTIFICATION = "generic"
+ FULL_NOTIFICATION = "full"
)
type ServiceSettings struct {
@@ -121,6 +124,7 @@ type EmailSettings struct {
PasswordResetSalt string
SendPushNotifications *bool
PushNotificationServer *string
+ PushNotificationContents *string
}
type RateLimitSettings struct {
@@ -299,6 +303,11 @@ func (o *Config) SetDefaults() {
*o.EmailSettings.PushNotificationServer = ""
}
+ if o.EmailSettings.PushNotificationContents == nil {
+ o.EmailSettings.PushNotificationContents = new(string)
+ *o.EmailSettings.PushNotificationContents = GENERIC_NOTIFICATION
+ }
+
if o.SupportSettings.TermsOfServiceLink == nil {
o.SupportSettings.TermsOfServiceLink = new(string)
*o.SupportSettings.TermsOfServiceLink = "/static/help/terms.html"