Authenticate Subsonic API calls using the DB

This commit is contained in:
Deluan 2020-01-20 13:35:59 -05:00
parent 50c7d3800a
commit 99c28731d4
13 changed files with 210 additions and 93 deletions

View file

@ -21,4 +21,5 @@ type UserRepository interface {
Put(*User) error
FindByUsername(username string) (*User, error)
UpdateLastLoginAt(id string) error
UpdateLastAccessAt(id string) error
}