summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-10-28 18:04:27 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-10-28 18:04:27 +0500
commite104829dcd7ae8ea0d6ab87f341cf5c5f1b30a41 (patch)
tree769e7de1f1c12cc4d58d934709032bc1bcbdedc9 /store/store.go
parent179c4ea684af8d2a021cc6f0042bc4408f39b0bb (diff)
parentc6f3361d3caf671ca64b798d5ac9eca97c387f9e (diff)
downloadchat-e104829dcd7ae8ea0d6ab87f341cf5c5f1b30a41.tar.gz
chat-e104829dcd7ae8ea0d6ab87f341cf5c5f1b30a41.tar.bz2
chat-e104829dcd7ae8ea0d6ab87f341cf5c5f1b30a41.zip
Merge branch 'master' of https://github.com/mattermost/platform into ui-improvements
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index bd2c3681e..42329b036 100644
--- a/store/store.go
+++ b/store/store.go
@@ -75,6 +75,7 @@ type ChannelStore interface {
CheckPermissionsToByName(teamId string, channelName string, userId string) StoreChannel
UpdateLastViewedAt(channelId string, userId string) StoreChannel
IncrementMentionCount(channelId string, userId string) StoreChannel
+ AnalyticsTypeCount(teamId string, channelType string) StoreChannel
}
type PostStore interface {
@@ -87,6 +88,9 @@ type PostStore interface {
GetEtag(channelId string) StoreChannel
Search(teamId string, userId string, params *model.SearchParams) StoreChannel
GetForExport(channelId string) StoreChannel
+ AnalyticsUserCountsWithPostsByDay(teamId string) StoreChannel
+ AnalyticsPostCountsByDay(teamId string) StoreChannel
+ AnalyticsPostCount(teamId string) StoreChannel
}
type UserStore interface {