summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2016-02-03 10:32:37 -0500
committerJoramWilander <jwawilander@gmail.com>2016-02-03 10:32:37 -0500
commit3425aa3e5d814e0c6d377a7faa07de6451216be1 (patch)
tree1ea1f34b9660078d3f5ec4062df879e01f947a50 /store/store.go
parentf7fddd6cce43ec75599eb4aa463276f18eb4ca28 (diff)
downloadchat-3425aa3e5d814e0c6d377a7faa07de6451216be1.tar.gz
chat-3425aa3e5d814e0c6d377a7faa07de6451216be1.tar.bz2
chat-3425aa3e5d814e0c6d377a7faa07de6451216be1.zip
Update user email when switching to SSO
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 cfc679706..2aa627734 100644
--- a/store/store.go
+++ b/store/store.go
@@ -111,7 +111,7 @@ type UserStore interface {
UpdateLastActivityAt(userId string, time int64) StoreChannel
UpdateUserAndSessionActivity(userId string, sessionId string, time int64) StoreChannel
UpdatePassword(userId, newPassword string) StoreChannel
- UpdateAuthData(userId, service, authData string) StoreChannel
+ UpdateAuthData(userId, service, authData, email string) StoreChannel
Get(id string) StoreChannel
GetProfiles(teamId string) StoreChannel
GetByEmail(teamId string, email string) StoreChannel