mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add UserList in UI
This commit is contained in:
parent
3a03284c59
commit
1c04a19910
13 changed files with 282 additions and 23 deletions
|
@ -2,6 +2,8 @@ package model
|
|||
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/deluan/rest"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -22,6 +24,11 @@ type QueryOptions struct {
|
|||
Filters Filters
|
||||
}
|
||||
|
||||
type ResourceRepository interface {
|
||||
rest.Repository
|
||||
rest.Persistable
|
||||
}
|
||||
|
||||
type DataStore interface {
|
||||
Album() AlbumRepository
|
||||
Artist() ArtistRepository
|
||||
|
@ -31,5 +38,7 @@ type DataStore interface {
|
|||
Playlist() PlaylistRepository
|
||||
Property() PropertyRepository
|
||||
|
||||
Resource(model interface{}) ResourceRepository
|
||||
|
||||
WithTx(func(tx DataStore) error) error
|
||||
}
|
||||
|
|
|
@ -3,9 +3,12 @@ package model
|
|||
import "time"
|
||||
|
||||
type User struct {
|
||||
ID string
|
||||
Name string
|
||||
Password string
|
||||
IsAdmin bool
|
||||
CreatedAt time.Time
|
||||
ID string
|
||||
Name string
|
||||
Password string
|
||||
IsAdmin bool
|
||||
LastLoginAt time.Time
|
||||
LastAccessAt time.Time
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue