summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-01-06 18:04:24 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-01-06 18:04:24 -0500
commit0e7a149982f73919badd9d366d06fa699925c89f (patch)
treeb8609b4ce5a962a3db80a790d4dcb1f48bf717c3 /model
parent5855b5e4590889944e4a408f7185f84779fc701a (diff)
downloadchat-0e7a149982f73919badd9d366d06fa699925c89f.tar.gz
chat-0e7a149982f73919badd9d366d06fa699925c89f.tar.bz2
chat-0e7a149982f73919badd9d366d06fa699925c89f.zip
Added the ability to get more channel members from getChannelExtraInfo
Diffstat (limited to 'model')
-rw-r--r--model/channel.go4
-rw-r--r--model/client.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/model/channel.go b/model/channel.go
index 0ce09f4bc..7109500d4 100644
--- a/model/channel.go
+++ b/model/channel.go
@@ -57,8 +57,8 @@ func (o *Channel) Etag() string {
return Etag(o.Id, o.UpdateAt)
}
-func (o *Channel) ExtraEtag() string {
- return Etag(o.Id, o.ExtraUpdateAt)
+func (o *Channel) ExtraEtag(memberLimit int) string {
+ return Etag(o.Id, o.ExtraUpdateAt, memberLimit)
}
func (o *Channel) IsValid() *AppError {
diff --git a/model/client.go b/model/client.go
index f1773f3c7..14746f8ae 100644
--- a/model/client.go
+++ b/model/client.go
@@ -591,8 +591,8 @@ func (c *Client) UpdateLastViewedAt(channelId string) (*Result, *AppError) {
}
}
-func (c *Client) GetChannelExtraInfo(id string, etag string) (*Result, *AppError) {
- if r, err := c.DoApiGet("/channels/"+id+"/extra_info", "", etag); err != nil {
+func (c *Client) GetChannelExtraInfo(id string, memberLimit int, etag string) (*Result, *AppError) {
+ if r, err := c.DoApiGet("/channels/"+id+"/extra_info/"+strconv.FormatInt(int64(memberLimit), 10), "", etag); err != nil {
return nil, err
} else {
return &Result{r.Header.Get(HEADER_REQUEST_ID),