summaryrefslogtreecommitdiffstats
path: root/store/layered_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/layered_store.go')
-rw-r--r--store/layered_store.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/store/layered_store.go b/store/layered_store.go
index ac0713f57..0c6a01125 100644
--- a/store/layered_store.go
+++ b/store/layered_store.go
@@ -199,3 +199,9 @@ func (s *LayeredReactionStore) DeleteAllWithEmojiName(emojiName string) StoreCha
return supplier.ReactionDeleteAllWithEmojiName(s.TmpContext, emojiName)
})
}
+
+func (s *LayeredReactionStore) PermanentDeleteBatch(endTime int64, limit int64) StoreChannel {
+ return s.RunQuery(func(supplier LayeredStoreSupplier) *LayeredStoreSupplierResult {
+ return supplier.ReactionPermanentDeleteBatch(s.TmpContext, endTime, limit)
+ })
+}