summaryrefslogtreecommitdiffstats
path: root/model/post.go
diff options
context:
space:
mode:
authorMartin Kraft <mkraft@users.noreply.github.com>2018-04-19 06:28:04 -0400
committerGeorge Goldberg <george@gberg.me>2018-04-19 11:28:04 +0100
commit4921fda79ff12b5e61cf66662932ab254535e16c (patch)
tree0fd1d0e2de393ef9cf35eb6a575b4959ea6c3fb3 /model/post.go
parent2b83f8c48f1bd84c06fe6dacc41d3013cbc3e1d0 (diff)
downloadchat-4921fda79ff12b5e61cf66662932ab254535e16c.tar.gz
chat-4921fda79ff12b5e61cf66662932ab254535e16c.tar.bz2
chat-4921fda79ff12b5e61cf66662932ab254535e16c.zip
MM-10122: Adds a mention for added-to-channel messages even when 'username mentions' are disabled. (#8648)
Diffstat (limited to 'model/post.go')
-rw-r--r--model/post.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/model/post.go b/model/post.go
index 31837b8c8..1db4b842a 100644
--- a/model/post.go
+++ b/model/post.go
@@ -49,6 +49,7 @@ const (
POST_PROPS_MAX_USER_RUNES = POST_PROPS_MAX_RUNES - 400 // Leave some room for system / pre-save modifications
POST_CUSTOM_TYPE_PREFIX = "custom_"
PROPS_ADD_CHANNEL_MEMBER = "add_channel_member"
+ POST_PROPS_ADDED_USER_ID = "addedUserId"
)
type Post struct {