Add GetPostsSince() to plugin API (#9649)

Этот коммит содержится в:
Hanzei
2018-10-15 16:04:22 +02:00
коммит произвёл Joram Wilander
родитель 0267a1f76e
Коммит c1e5fff565
4 изменённых файлов: 62 добавлений и 0 удалений

Просмотреть файл

@@ -649,6 +649,31 @@ func (_m *API) GetPostsForChannel(channelId string, page int, perPage int) (*mod
return r0, r1
}
// GetPostsSince provides a mock function with given fields: channelId, time
func (_m *API) GetPostsSince(channelId string, time int64) (*model.PostList, *model.AppError) {
ret := _m.Called(channelId, time)
var r0 *model.PostList
if rf, ok := ret.Get(0).(func(string, int64) *model.PostList); ok {
r0 = rf(channelId, time)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*model.PostList)
}
}
var r1 *model.AppError
if rf, ok := ret.Get(1).(func(string, int64) *model.AppError); ok {
r1 = rf(channelId, time)
} else {
if ret.Get(1) != nil {
r1 = ret.Get(1).(*model.AppError)
}
}
return r0, r1
}
// GetPublicChannelsForTeam provides a mock function with given fields: teamId, offset, limit
func (_m *API) GetPublicChannelsForTeam(teamId string, offset int, limit int) (*model.ChannelList, *model.AppError) {
ret := _m.Called(teamId, offset, limit)