From 23e527978ed3e889bebe5c879de2d4835509626a Mon Sep 17 00:00:00 2001 From: hmhealey Date: Tue, 7 Jul 2015 11:00:29 -0400 Subject: Add a post type for user joined/left messages and don't flag a channel as unread when one of those is automatically posted --- model/post.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'model') diff --git a/model/post.go b/model/post.go index d10a9f9fc..f6f33b1e8 100644 --- a/model/post.go +++ b/model/post.go @@ -9,7 +9,8 @@ import ( ) const ( - POST_DEFAULT = "" + POST_DEFAULT = "" + POST_JOIN_LEAVE = "join_leave" ) type Post struct { @@ -100,7 +101,7 @@ func (o *Post) IsValid() *AppError { return NewAppError("Post.IsValid", "Invalid hashtags", "id="+o.Id) } - if !(o.Type == POST_DEFAULT) { + if !(o.Type == POST_DEFAULT || o.Type == POST_JOIN_LEAVE) { return NewAppError("Post.IsValid", "Invalid type", "id="+o.Type) } -- cgit v1.2.3-1-g7c22