summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-02-28 23:55:21 +0000
committerenahum <nahumhbl@gmail.com>2017-02-28 20:55:21 -0300
commitf7682ad11a3f27925b46ffc37fa66c6d4b6feef5 (patch)
tree0bba7bcb428599e847a9abfd9b003d1e7aa29982 /store/store.go
parent48d124ec9aee139c00538b17c1cf978015641c8e (diff)
downloadchat-f7682ad11a3f27925b46ffc37fa66c6d4b6feef5.tar.gz
chat-f7682ad11a3f27925b46ffc37fa66c6d4b6feef5.tar.bz2
chat-f7682ad11a3f27925b46ffc37fa66c6d4b6feef5.zip
PLT-5367: Basic post bulk importing. (#5562)
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index 57741742c..a436f9ee7 100644
--- a/store/store.go
+++ b/store/store.go
@@ -152,6 +152,8 @@ type PostStore interface {
AnalyticsPostCountsByDay(teamId string) StoreChannel
AnalyticsPostCount(teamId string, mustHaveFile bool, mustHaveHashtag bool) StoreChannel
InvalidateLastPostTimeCache(channelId string)
+ GetPostsCreatedAt(channelId string, time int64) StoreChannel
+ Overwrite(post *model.Post) StoreChannel
}
type UserStore interface {