summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-07-17 09:44:51 -0400
committerChristopher Speller <crspeller@gmail.com>2015-07-17 09:44:51 -0400
commitf49fccdee356d604a58ad0cddcc2fe5b7ebf5cc8 (patch)
treec4cd7d4be00788e68a7f7950945cf67fef7d2213 /store/store.go
parent3f328546f8af55f655290aefad245b0f3b049bcd (diff)
parent1fe86a004ef2a99c55a583b2b2b0bf1c40b6afe3 (diff)
downloadchat-f49fccdee356d604a58ad0cddcc2fe5b7ebf5cc8.tar.gz
chat-f49fccdee356d604a58ad0cddcc2fe5b7ebf5cc8.tar.bz2
chat-f49fccdee356d604a58ad0cddcc2fe5b7ebf5cc8.zip
Merge pull request #196 from nickago/MM-1058
MM-1058 Added last updated for pictures
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/store.go b/store/store.go
index 0ed045788..9faa6a9d7 100644
--- a/store/store.go
+++ b/store/store.go
@@ -77,7 +77,7 @@ type PostStore interface {
type UserStore interface {
Save(user *model.User) StoreChannel
Update(user *model.User, allowRoleUpdate bool) StoreChannel
- UpdateUpdateAt(userId string) StoreChannel
+ UpdateLastPictureUpdate(userId string) StoreChannel
UpdateLastPingAt(userId string, time int64) StoreChannel
UpdateLastActivityAt(userId string, time int64) StoreChannel
UpdateUserAndSessionActivity(userId string, sessionId string, time int64) StoreChannel