summaryrefslogtreecommitdiffstats
path: root/model/user.go
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-07-22 15:05:20 -0400
committerJoramWilander <jwawilander@gmail.com>2015-07-22 15:05:20 -0400
commit41bbbbf4462205348c978a2cce5162f73e35f6b7 (patch)
treefe49bc9d99b34a8e99787af29606b8c5af23c42c /model/user.go
parent44cfa364fd3c328523054d8ee2221d6019ad6de1 (diff)
downloadchat-41bbbbf4462205348c978a2cce5162f73e35f6b7.tar.gz
chat-41bbbbf4462205348c978a2cce5162f73e35f6b7.tar.bz2
chat-41bbbbf4462205348c978a2cce5162f73e35f6b7.zip
add changes from team review
Diffstat (limited to 'model/user.go')
-rw-r--r--model/user.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/user.go b/model/user.go
index 78b033327..c71d75405 100644
--- a/model/user.go
+++ b/model/user.go
@@ -37,6 +37,7 @@ type User struct {
Username string `json:"username"`
Password string `json:"password"`
AuthData string `json:"auth_data"`
+ AuthService string `json:"auth_service"`
Email string `json:"email"`
EmailVerified bool `json:"email_verified"`
Nickname string `json:"nickname"`
@@ -50,7 +51,6 @@ type User struct {
NotifyProps StringMap `json:"notify_props"`
LastPasswordUpdate int64 `json:"last_password_update"`
LastPictureUpdate int64 `json:"last_picture_update"`
- AuthService string `json:"auth_service"`
}
type GitLabUser struct {