summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-09-06 15:48:43 -0300
committerGitHub <noreply@github.com>2016-09-06 15:48:43 -0300
commit35b816b92217237de922c928a6623b5ac426655a (patch)
treeadf7e7a96bd4b50aae0b295f94f8501643e7fc38 /store/store.go
parent9a9ae3dcd1c248a5d9e6f986ea967fa8bbf06f19 (diff)
downloadchat-35b816b92217237de922c928a6623b5ac426655a.tar.gz
chat-35b816b92217237de922c928a6623b5ac426655a.tar.bz2
chat-35b816b92217237de922c928a6623b5ac426655a.zip
PLT-3921 Fix System Console Recent Active Users (#3856)
* PLT-3921 System Console Recent Active Users
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index d3b908106..cf08a6c64 100644
--- a/store/store.go
+++ b/store/store.go
@@ -275,6 +275,7 @@ type StatusStore interface {
Get(userId string) StoreChannel
GetOnlineAway() StoreChannel
GetOnline() StoreChannel
+ GetAllFromTeam(teamId string) StoreChannel
ResetAll() StoreChannel
GetTotalActiveUsersCount() StoreChannel
UpdateLastActivityAt(userId string, lastActivityAt int64) StoreChannel