Add GetPostsSince() to plugin API (#9649)

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

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

@@ -176,6 +176,9 @@ type API interface {
// GetPost gets a post.
GetPost(postId string) (*model.Post, *model.AppError)
// GetPostsSince gets posts created after a specified time as Unix time in milliseconds.
GetPostsSince(channelId string, time int64) (*model.PostList, *model.AppError)
// GetPostsForChannel gets a list of posts for a channel.
GetPostsForChannel(channelId string, page, perPage int) (*model.PostList, *model.AppError)