summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-09-23 11:31:10 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-09-23 11:31:10 -0400
commitfa312f5b4708ee354cef1e15ac03790f46a3f757 (patch)
tree37a88a60898aa89991ad30e7c0dbf1a2cd1c9cba /api
parent7eef5be3596470321df8a7a0c6b07aa9cc6edb07 (diff)
parentf7a32fa38a5c9f33d7fbb3d73d240626211173cc (diff)
downloadchat-fa312f5b4708ee354cef1e15ac03790f46a3f757.tar.gz
chat-fa312f5b4708ee354cef1e15ac03790f46a3f757.tar.bz2
chat-fa312f5b4708ee354cef1e15ac03790f46a3f757.zip
Merge pull request #760 from chengweiv5/PLT-126
PLT-126: Change 'Private Messages' to 'Direct Messages'
Diffstat (limited to 'api')
-rw-r--r--api/post.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/post.go b/api/post.go
index 21bc35b97..bbbc93115 100644
--- a/api/post.go
+++ b/api/post.go
@@ -230,7 +230,7 @@ func fireAndForgetNotifications(post *model.Post, teamId, siteURL string) {
channel = result.Data.(*model.Channel)
if channel.Type == model.CHANNEL_DIRECT {
bodyText = "You have one new message."
- subjectText = "New Private Message"
+ subjectText = "New Direct Message"
} else {
bodyText = "You have one new mention."
subjectText = "New Mention"