summaryrefslogtreecommitdiffstats
path: root/plugin/api.go
diff options
context:
space:
mode:
authorAkash Srivastava <akashsrivastava4927@gmail.com>2018-10-04 01:37:54 +0530
committerJoram Wilander <jwawilander@gmail.com>2018-10-03 16:07:54 -0400
commit8de9a61f7ffd570312fd05c5e6986f9d21ab0063 (patch)
treeb087573982019f52e4287a38fb6428c21e53a33b /plugin/api.go
parent8c03e584c182218c84bebc8af23c70fb0cd203d4 (diff)
downloadchat-8de9a61f7ffd570312fd05c5e6986f9d21ab0063.tar.gz
chat-8de9a61f7ffd570312fd05c5e6986f9d21ab0063.tar.bz2
chat-8de9a61f7ffd570312fd05c5e6986f9d21ab0063.zip
Add GetChannelMembers method to plugin API (#9525)
Signed-off-by: Akash Srivastava <akash.srivastava@openebs.io>
Diffstat (limited to 'plugin/api.go')
-rw-r--r--plugin/api.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/api.go b/plugin/api.go
index b85160940..80364c2af 100644
--- a/plugin/api.go
+++ b/plugin/api.go
@@ -140,6 +140,9 @@ type API interface {
// GetChannelMember gets a channel membership for a user.
GetChannelMember(channelId, userId string) (*model.ChannelMember, *model.AppError)
+ // GetChannelMembers gets a channel membership for all users.
+ GetChannelMembers(channelId string, page, perPage int) (*model.ChannelMembers, *model.AppError)
+
// UpdateChannelMemberRoles updates a user's roles for a channel.
UpdateChannelMemberRoles(channelId, userId, newRoles string) (*model.ChannelMember, *model.AppError)