summaryrefslogtreecommitdiffstats
path: root/api/post.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/post.go')
-rw-r--r--api/post.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/api/post.go b/api/post.go
index cf83c4d0d..937628e0a 100644
--- a/api/post.go
+++ b/api/post.go
@@ -536,10 +536,10 @@ func sendNotifications(c *Context, post *model.Post, team *model.Team, channel *
keywordMap[profile.FirstName] = append(keywordMap[profile.FirstName], profile.Id)
}
- // Add @all to keywords if user has them turned on
- // if profile.NotifyProps["all"] == "true" {
- // keywordMap["@all"] = append(keywordMap["@all"], profile.Id)
- // }
+ //Add @all to keywords if user has them turned on
+ if profile.NotifyProps["all"] == "true" {
+ keywordMap["@all"] = append(keywordMap["@all"], profile.Id)
+ }
// Add @channel to keywords if user has them turned on
if profile.NotifyProps["channel"] == "true" {