summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-05-12 18:36:30 -0700
committerCorey Hulen <corey@hulen.com>2016-05-12 18:36:30 -0700
commit9d94869cc6a0fb9f051879437c104ccd76094380 (patch)
tree4a61582c2a41b9d5983f107b0d66ece906d22718 /store/store.go
parente46c1b8d52dce75a442b42c40803a071532676d7 (diff)
downloadchat-9d94869cc6a0fb9f051879437c104ccd76094380.tar.gz
chat-9d94869cc6a0fb9f051879437c104ccd76094380.tar.bz2
chat-9d94869cc6a0fb9f051879437c104ccd76094380.zip
Fixing issue with missing user (#2989)
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 37aafdd4a..7f62fcd97 100644
--- a/store/store.go
+++ b/store/store.go
@@ -122,6 +122,7 @@ type UserStore interface {
Save(user *model.User) StoreChannel
Update(user *model.User, allowRoleUpdate bool) StoreChannel
UpdateLastPictureUpdate(userId string) StoreChannel
+ UpdateUpdateAt(userId string) StoreChannel
UpdateLastPingAt(userId string, time int64) StoreChannel
UpdateLastActivityAt(userId string, time int64) StoreChannel
UpdateUserAndSessionActivity(userId string, sessionId string, time int64) StoreChannel