From 61da22ea32a71015191e94665171e9703bd39211 Mon Sep 17 00:00:00 2001 From: hmhealey Date: Tue, 27 Oct 2015 11:04:23 -0400 Subject: Added Channel.Purpose on the server --- model/channel.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'model/channel.go') diff --git a/model/channel.go b/model/channel.go index caf1bfd80..ac54a7e44 100644 --- a/model/channel.go +++ b/model/channel.go @@ -25,6 +25,7 @@ type Channel struct { DisplayName string `json:"display_name"` Name string `json:"name"` Header string `json:"header"` + Purpose string `json:"purpose"` LastPostAt int64 `json:"last_post_at"` TotalMsgCount int64 `json:"total_msg_count"` ExtraUpdateAt int64 `json:"extra_update_at"` @@ -93,6 +94,10 @@ func (o *Channel) IsValid() *AppError { return NewAppError("Channel.IsValid", "Invalid header", "id="+o.Id) } + if len(o.Purpose) > 128 { + return NewAppError("Channel.IsValid", "Invalid purpose", "id="+o.Id) + } + if len(o.CreatorId) > 26 { return NewAppError("Channel.IsValid", "Invalid creator id", "") } -- cgit v1.2.3-1-g7c22