summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-10-24 17:04:11 -0700
committerenahum <nahumhbl@gmail.com>2016-10-24 21:04:11 -0300
commit9071553165cfc9f073f57aab96a3e6a7c771c8f3 (patch)
tree0dabe6e35b0121997051e54d0823a4499d0cae70 /store/store.go
parent4d9f5173bc81fcaad8040b46b0d9950458412747 (diff)
downloadchat-9071553165cfc9f073f57aab96a3e6a7c771c8f3.tar.gz
chat-9071553165cfc9f073f57aab96a3e6a7c771c8f3.tar.bz2
chat-9071553165cfc9f073f57aab96a3e6a7c771c8f3.zip
PLT-4359 fixing push notification for more than 1 device (#4318)
* PLT-4359 fixing push notification for more than 1 device * Addressing feedback
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 900709f16..51aada920 100644
--- a/store/store.go
+++ b/store/store.go
@@ -172,6 +172,7 @@ type SessionStore interface {
Save(session *model.Session) StoreChannel
Get(sessionIdOrToken string) StoreChannel
GetSessions(userId string) StoreChannel
+ GetSessionsWithActiveDeviceIds(userId string) StoreChannel
Remove(sessionIdOrToken string) StoreChannel
RemoveAllSessions() StoreChannel
PermanentDeleteSessionsByUser(teamId string) StoreChannel