summaryrefslogtreecommitdiffstats
path: root/plugin/api.go
diff options
context:
space:
mode:
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 e0b3dde3c..713fab1b4 100644
--- a/plugin/api.go
+++ b/plugin/api.go
@@ -188,6 +188,9 @@ type API interface {
// GetPostsSince gets posts created after a specified time as Unix time in milliseconds.
GetPostsSince(channelId string, time int64) (*model.PostList, *model.AppError)
+ // GetPostsBefore gets a page of posts that were posted before the post provided.
+ GetPostsBefore(channelId, postId string, page, perPage int) (*model.PostList, *model.AppError)
+
// GetPostsForChannel gets a list of posts for a channel.
GetPostsForChannel(channelId string, page, perPage int) (*model.PostList, *model.AppError)