summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorChris Duarte <csduarte@users.noreply.github.com>2017-11-24 09:57:02 -0800
committerJoram Wilander <jwawilander@gmail.com>2017-11-24 12:57:02 -0500
commitfdbfb9a4ed722bfe138ecaf7c5b308191c13925f (patch)
tree09fdb2fcdd8542ab6ac188a03cbfc27aebd10322 /model
parent7ac35548c8ffdcd9b0d2e260d31dbc9adc4a0065 (diff)
downloadchat-fdbfb9a4ed722bfe138ecaf7c5b308191c13925f.tar.gz
chat-fdbfb9a4ed722bfe138ecaf7c5b308191c13925f.tar.bz2
chat-fdbfb9a4ed722bfe138ecaf7c5b308191c13925f.zip
Replace Channel Name for Team in Email Notifications (#7839)
* allow option to set channel name in email notification subject * Added TeamName to title when UseChannelInEmailNotifications=true
Diffstat (limited to 'model')
-rw-r--r--model/config.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/model/config.go b/model/config.go
index f5e8fe27a..00322156e 100644
--- a/model/config.go
+++ b/model/config.go
@@ -653,6 +653,7 @@ type EmailSettings struct {
EnableSignInWithEmail *bool
EnableSignInWithUsername *bool
SendEmailNotifications bool
+ UseChannelInEmailNotifications *bool
RequireEmailVerification bool
FeedbackName string
FeedbackEmail string
@@ -687,6 +688,10 @@ func (s *EmailSettings) SetDefaults() {
s.EnableSignInWithUsername = NewBool(false)
}
+ if s.UseChannelInEmailNotifications == nil {
+ s.UseChannelInEmailNotifications = NewBool(false)
+ }
+
if s.SendPushNotifications == nil {
s.SendPushNotifications = NewBool(false)
}