From cc6d272eb7719bcca02c7f36a1badbeecb153759 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Wed, 22 Nov 2017 22:22:33 -0800 Subject: Add OAuth2 authentication --- model/user.go | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'model/user.go') diff --git a/model/user.go b/model/user.go index 26bf6c9..6e13690 100644 --- a/model/user.go +++ b/model/user.go @@ -11,14 +11,20 @@ import ( // User represents a user in the system. type User struct { - ID int64 `json:"id"` - Username string `json:"username"` - Password string `json:"password,omitempty"` - IsAdmin bool `json:"is_admin"` - Theme string `json:"theme"` - Language string `json:"language"` - Timezone string `json:"timezone"` - LastLoginAt *time.Time `json:"last_login_at"` + ID int64 `json:"id"` + Username string `json:"username"` + Password string `json:"password,omitempty"` + IsAdmin bool `json:"is_admin"` + Theme string `json:"theme"` + Language string `json:"language"` + Timezone string `json:"timezone"` + LastLoginAt *time.Time `json:"last_login_at"` + Extra map[string]string `json:"-"` +} + +// NewUser returns a new User. +func NewUser() *User { + return &User{Extra: make(map[string]string)} } func (u User) ValidateUserCreation() error { -- cgit v1.2.3