summaryrefslogtreecommitdiffstats
path: root/plugin/plugintest
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/plugintest
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/plugintest')
-rw-r--r--plugin/plugintest/api.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugin/plugintest/api.go b/plugin/plugintest/api.go
index 64189ee23..862662cf8 100644
--- a/plugin/plugintest/api.go
+++ b/plugin/plugintest/api.go
@@ -433,6 +433,31 @@ func (_m *API) GetChannelMember(channelId string, userId string) (*model.Channel
return r0, r1
}
+// GetChannelMembers provides a mock function with given fields: channelId, page, perPage
+func (_m *API) GetChannelMembers(channelId string, page int, perPage int) (*model.ChannelMembers, *model.AppError) {
+ ret := _m.Called(channelId, page, perPage)
+
+ var r0 *model.ChannelMembers
+ if rf, ok := ret.Get(0).(func(string, int, int) *model.ChannelMembers); ok {
+ r0 = rf(channelId, page, perPage)
+ } else {
+ if ret.Get(0) != nil {
+ r0 = ret.Get(0).(*model.ChannelMembers)
+ }
+ }
+
+ var r1 *model.AppError
+ if rf, ok := ret.Get(1).(func(string, int, int) *model.AppError); ok {
+ r1 = rf(channelId, page, perPage)
+ } else {
+ if ret.Get(1) != nil {
+ r1 = ret.Get(1).(*model.AppError)
+ }
+ }
+
+ return r0, r1
+}
+
// GetConfig provides a mock function with given fields:
func (_m *API) GetConfig() *model.Config {
ret := _m.Called()