summaryrefslogtreecommitdiffstats
path: root/api/post.go
diff options
context:
space:
mode:
authornickago <ngonella@calpoly.edu>2015-07-01 09:48:39 -0700
committernickago <ngonella@calpoly.edu>2015-07-01 09:48:39 -0700
commit27eeabafe096013f1d0d368a65fe71ef230eab50 (patch)
treeea2d84280aa41e7999e6a10615a3e55e4be18527 /api/post.go
parent5e204030ffe91aaab090a26547185017edf1d2e1 (diff)
downloadchat-27eeabafe096013f1d0d368a65fe71ef230eab50.tar.gz
chat-27eeabafe096013f1d0d368a65fe71ef230eab50.tar.bz2
chat-27eeabafe096013f1d0d368a65fe71ef230eab50.zip
Facelifted "direct message" to "private message"
Diffstat (limited to 'api/post.go')
-rw-r--r--api/post.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/post.go b/api/post.go
index 2d812e8de..650f47062 100644
--- a/api/post.go
+++ b/api/post.go
@@ -227,7 +227,7 @@ func fireAndForgetNotifications(post *model.Post, teamId, teamUrl string) {
channel = result.Data.(*model.Channel)
if channel.Type == model.CHANNEL_DIRECT {
bodyText = "You have one new message."
- subjectText = "New Direct Message"
+ subjectText = "New Private Message"
} else {
bodyText = "You have one new mention."
subjectText = "New Mention"