summaryrefslogtreecommitdiffstats
path: root/store
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-01-26 21:13:44 -0500
committer=Corey Hulen <corey@hulen.com>2016-01-26 21:13:44 -0500
commit6fd0f651b94e594dddb00800bf295af7ff42934e (patch)
tree10d025a5f4cc8706d0da3346be91dfaeff0b88bd /store
parent0dec26bb9f3e05a84873996c9ecb3bd87b7dc925 (diff)
downloadchat-6fd0f651b94e594dddb00800bf295af7ff42934e.tar.gz
chat-6fd0f651b94e594dddb00800bf295af7ff42934e.tar.bz2
chat-6fd0f651b94e594dddb00800bf295af7ff42934e.zip
Fixing naming
Diffstat (limited to 'store')
-rw-r--r--store/store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/store.go b/store/store.go
index e8c5537ac..3988f0c6a 100644
--- a/store/store.go
+++ b/store/store.go
@@ -137,7 +137,7 @@ type SessionStore interface {
PermanentDeleteSessionsByUser(teamId string) StoreChannel
UpdateLastActivityAt(sessionId string, time int64) StoreChannel
UpdateRoles(userId string, roles string) StoreChannel
- UpdateDeviceId(sessionIdOrToken string, deviceId string) StoreChannel
+ UpdateDeviceId(id string, deviceId string) StoreChannel
}
type AuditStore interface {