summaryrefslogtreecommitdiffstats
path: root/webapp/utils
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-02-22 09:16:17 -0500
committerCorey Hulen <corey@hulen.com>2017-02-22 09:16:17 -0500
commitd1f1109e592d5538254b8ec3da3e9c283d03f411 (patch)
treec57398b7edbe0b887243edfdb4a1b3cf16a7a46b /webapp/utils
parent69cac604e09c139845d2f63ac95fb702fb5a9fe1 (diff)
downloadchat-d1f1109e592d5538254b8ec3da3e9c283d03f411.tar.gz
chat-d1f1109e592d5538254b8ec3da3e9c283d03f411.tar.bz2
chat-d1f1109e592d5538254b8ec3da3e9c283d03f411.zip
Fix unreads appearing after some system messages posted (#5491)
Diffstat (limited to 'webapp/utils')
-rw-r--r--webapp/utils/constants.jsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/webapp/utils/constants.jsx b/webapp/utils/constants.jsx
index de720b837..6ad4a9e92 100644
--- a/webapp/utils/constants.jsx
+++ b/webapp/utils/constants.jsx
@@ -234,6 +234,7 @@ export const PostTypes = {
LEAVE_CHANNEL: 'system_leave_channel',
ADD_TO_CHANNEL: 'system_add_to_channel',
REMOVE_FROM_CHANNEL: 'system_remove_from_channel',
+ ADD_REMOVE: 'system_add_remove',
HEADER_CHANGE: 'system_header_change',
DISPLAYNAME_CHANGE: 'system_displayname_change',
PURPOSE_CHANGE: 'system_purpose_change',
@@ -250,6 +251,7 @@ export const Constants = {
UserSearchOptions,
TutorialSteps,
PostTypes,
+ IGNORE_POST_TYPES: [PostTypes.JOIN_LEAVE, PostTypes.JOIN_CHANNEL, PostTypes.LEAVE_CHANNEL, PostTypes.REMOVE_FROM_CHANNEL, PostTypes.ADD_TO_CHANNEL, PostTypes.ADD_REMOVE],
PayloadSources: keyMirror({
SERVER_ACTION: null,