summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorJesús Espino <jespinog@gmail.com>2017-09-20 17:38:27 +0200
committerHarrison Healey <harrisonmhealey@gmail.com>2017-09-20 11:38:27 -0400
commit62e5e2fda8d70d7f0b2cd3f47360a06134db58f0 (patch)
treeaa26e4783c0fa232e625ad0da35ee76c448f086f /model
parent3a80225d617fa273d92613756aca8889e1466eb1 (diff)
downloadchat-62e5e2fda8d70d7f0b2cd3f47360a06134db58f0.tar.gz
chat-62e5e2fda8d70d7f0b2cd3f47360a06134db58f0.tar.bz2
chat-62e5e2fda8d70d7f0b2cd3f47360a06134db58f0.zip
PLT-7508: Add settings to disable wide mention confirmation (#7416)
Diffstat (limited to 'model')
-rw-r--r--model/config.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/model/config.go b/model/config.go
index 27fdb90ce..64bfc06ce 100644
--- a/model/config.go
+++ b/model/config.go
@@ -368,6 +368,7 @@ type TeamSettings struct {
UserStatusAwayTimeout *int64
MaxChannelsPerTeam *int64
MaxNotificationsPerChannel *int64
+ EnableConfirmNotificationsToChannel *bool
TeammateNameDisplay *string
ExperimentalTownSquareIsReadOnly *bool
}
@@ -855,6 +856,11 @@ func (o *Config) SetDefaults() {
*o.TeamSettings.MaxNotificationsPerChannel = 1000
}
+ if o.TeamSettings.EnableConfirmNotificationsToChannel == nil {
+ o.TeamSettings.EnableConfirmNotificationsToChannel = new(bool)
+ *o.TeamSettings.EnableConfirmNotificationsToChannel = true
+ }
+
if o.TeamSettings.ExperimentalTownSquareIsReadOnly == nil {
o.TeamSettings.ExperimentalTownSquareIsReadOnly = new(bool)
*o.TeamSettings.ExperimentalTownSquareIsReadOnly = false