mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Authenticate UI
This commit is contained in:
parent
6785d616d0
commit
e717d99780
14 changed files with 313 additions and 22 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue