diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/plugin_api.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/plugin_api.go b/app/plugin_api.go index fed4ad027..fc7adbcd9 100644 --- a/app/plugin_api.go +++ b/app/plugin_api.go @@ -262,6 +262,10 @@ func (api *PluginAPI) GetChannelMember(channelId, userId string) (*model.Channel return api.app.GetChannelMember(channelId, userId) } +func (api *PluginAPI) GetChannelMembers(channelId string, page, perPage int) (*model.ChannelMembers, *model.AppError) { + return api.app.GetChannelMembersPage(channelId, page, perPage) +} + func (api *PluginAPI) UpdateChannelMemberRoles(channelId, userId, newRoles string) (*model.ChannelMember, *model.AppError) { return api.app.UpdateChannelMemberRoles(channelId, userId, newRoles) } |