summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/store.go b/store/store.go
index 05eb7f4e1..40b641002 100644
--- a/store/store.go
+++ b/store/store.go
@@ -130,13 +130,13 @@ type PostStore interface {
GetFlaggedPosts(userId string, offset int, limit int) StoreChannel
GetPostsBefore(channelId string, postId string, numPosts int, offset int) StoreChannel
GetPostsAfter(channelId string, postId string, numPosts int, offset int) StoreChannel
- GetPostsSince(channelId string, time int64) StoreChannel
+ GetPostsSince(channelId string, time int64, allowFromCache bool) StoreChannel
GetEtag(channelId string, allowFromCache bool) StoreChannel
Search(teamId string, userId string, params *model.SearchParams) StoreChannel
AnalyticsUserCountsWithPostsByDay(teamId string) StoreChannel
AnalyticsPostCountsByDay(teamId string) StoreChannel
AnalyticsPostCount(teamId string, mustHaveFile bool, mustHaveHashtag bool) StoreChannel
- InvalidatePostEtagCache(channelId string)
+ InvalidateLastPostTimeCache(channelId string)
}
type UserStore interface {