From 11247061b5623140656e3ec0ee96b6566637a950 Mon Sep 17 00:00:00 2001 From: JoramWilander Date: Wed, 19 Aug 2015 08:31:20 -0400 Subject: Track channel creator in DB and show in channel intro message. --- model/channel.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'model') diff --git a/model/channel.go b/model/channel.go index 94b8fdb43..b46f79f75 100644 --- a/model/channel.go +++ b/model/channel.go @@ -28,6 +28,7 @@ type Channel struct { LastPostAt int64 `json:"last_post_at"` TotalMsgCount int64 `json:"total_msg_count"` ExtraUpdateAt int64 `json:"extra_update_at"` + CreatorId string `json:"creator_id"` } func (o *Channel) ToJson() string { @@ -92,6 +93,10 @@ func (o *Channel) IsValid() *AppError { return NewAppError("Channel.IsValid", "Invalid description", "id="+o.Id) } + if len(o.CreatorId) > 26 { + return NewAppError("Channel.IsValid", "Invalid creator id", "") + } + return nil } -- cgit v1.2.3-1-g7c22