mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Authenticate Subsonic API calls using the DB
This commit is contained in:
parent
50c7d3800a
commit
99c28731d4
13 changed files with 210 additions and 93 deletions
|
@ -7,7 +7,8 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
ErrNotFound = errors.New("data not found")
|
||||
ErrNotFound = errors.New("data not found")
|
||||
ErrInvalidAuth = errors.New("invalid authentication")
|
||||
)
|
||||
|
||||
// Filters use the same operators as Beego ORM: See https://beego.me/docs/mvc/model/query.md#operators
|
||||
|
|
|
@ -21,4 +21,5 @@ type UserRepository interface {
|
|||
Put(*User) error
|
||||
FindByUsername(username string) (*User, error)
|
||||
UpdateLastLoginAt(id string) error
|
||||
UpdateLastAccessAt(id string) error
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue