Authenticate UI

This commit is contained in:
Deluan 2020-01-20 09:54:29 -05:00
parent 6785d616d0
commit e717d99780
14 changed files with 313 additions and 22 deletions

View file

@ -4,7 +4,9 @@ import "time"
type User struct {
ID string
UserName string
Name string
Email string
Password string
IsAdmin bool
LastLoginAt *time.Time
@ -17,4 +19,6 @@ type UserRepository interface {
CountAll(...QueryOptions) (int64, error)
Get(id string) (*User, error)
Put(*User) error
FindByUsername(username string) (*User, error)
UpdateLastLoginAt(id string) error
}