summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-11-12 12:35:47 -0500
committerChristopher Speller <crspeller@gmail.com>2015-11-12 12:35:47 -0500
commitc1ab5adb209cefde121aff308b77e470368422cd (patch)
treea5f11345a5a0ea2447300eadea59e948e8003c5e /store/store.go
parent67b92f32481dba243786821ed3eb189c0bd7261d (diff)
parentbe43522117e637271509cf24244f554a437c0578 (diff)
downloadchat-c1ab5adb209cefde121aff308b77e470368422cd.tar.gz
chat-c1ab5adb209cefde121aff308b77e470368422cd.tar.bz2
chat-c1ab5adb209cefde121aff308b77e470368422cd.zip
Merge pull request #1410 from hmhealey/plt906
PLT-906 Added ChannelExtra.MemberCount field
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index ce4d90883..13b59b582 100644
--- a/store/store.go
+++ b/store/store.go
@@ -70,6 +70,7 @@ type ChannelStore interface {
UpdateMember(member *model.ChannelMember) StoreChannel
GetMembers(channelId string) StoreChannel
GetMember(channelId string, userId string) StoreChannel
+ GetMemberCount(channelId string) StoreChannel
RemoveMember(channelId string, userId string) StoreChannel
GetExtraMembers(channelId string, limit int) StoreChannel
CheckPermissionsTo(teamId string, channelId string, userId string) StoreChannel