summaryrefslogtreecommitdiffstats
path: root/model/post.go
diff options
context:
space:
mode:
authorVordimous <gsoi7vzireeyokoprf@thrott.com>2018-02-07 09:17:18 -0500
committerGeorge Goldberg <george@gberg.me>2018-02-07 14:17:18 +0000
commit7bd298ceaa24c0721e0acd65692cb2d1ca4983f3 (patch)
tree870013c04c31b293e64404a8e74e16c2b1a94c33 /model/post.go
parentd3e934d07ac0a58a24a435ea7c5b3bd222ef509a (diff)
downloadchat-7bd298ceaa24c0721e0acd65692cb2d1ca4983f3.tar.gz
chat-7bd298ceaa24c0721e0acd65692cb2d1ca4983f3.tar.bz2
chat-7bd298ceaa24c0721e0acd65692cb2d1ca4983f3.zip
PLT-7537: Move channel CLI command posts system message to channel. (#8161)
* [PTL-7537] implement feature and test * [PTL-7537] Update feature to post the the room requiring a username flag to be used * [PTL-7537] update tests with username * update test to remove changes to the test helper struct * use the basic team and user
Diffstat (limited to 'model/post.go')
-rw-r--r--model/post.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/model/post.go b/model/post.go
index 391b948f4..7cf0f1b35 100644
--- a/model/post.go
+++ b/model/post.go
@@ -28,6 +28,7 @@ const (
POST_ADD_REMOVE = "system_add_remove" // Deprecated, use POST_ADD_TO_CHANNEL or POST_REMOVE_FROM_CHANNEL instead
POST_ADD_TO_CHANNEL = "system_add_to_channel"
POST_REMOVE_FROM_CHANNEL = "system_remove_from_channel"
+ POST_MOVE_CHANNEL = "system_move_channel"
POST_ADD_TO_TEAM = "system_add_to_team"
POST_REMOVE_FROM_TEAM = "system_remove_from_team"
POST_HEADER_CHANGE = "system_header_change"
@@ -196,6 +197,7 @@ func (o *Post) IsValid() *AppError {
POST_LEAVE_TEAM,
POST_ADD_TO_CHANNEL,
POST_REMOVE_FROM_CHANNEL,
+ POST_MOVE_CHANNEL,
POST_ADD_TO_TEAM,
POST_REMOVE_FROM_TEAM,
POST_SLACK_ATTACHMENT,