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, 3 insertions, 1 deletions
diff --git a/store/store.go b/store/store.go
index a436f9ee7..7aa903f6f 100644
--- a/store/store.go
+++ b/store/store.go
@@ -348,6 +348,8 @@ type FileInfoStore interface {
type ReactionStore interface {
Save(reaction *model.Reaction) StoreChannel
Delete(reaction *model.Reaction) StoreChannel
- GetForPost(postId string) StoreChannel
+ InvalidateCacheForPost(postId string)
+ InvalidateCache()
+ GetForPost(postId string, allowFromCache bool) StoreChannel
DeleteAllWithEmojiName(emojiName string) StoreChannel
}