mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix: login must be case-insensitive
This commit is contained in:
parent
a7f8e4ee2b
commit
6f5a322927
3 changed files with 43 additions and 0 deletions
|
@ -22,6 +22,7 @@ type UserRepository interface {
|
|||
CountAll(...QueryOptions) (int64, error)
|
||||
Get(id string) (*User, error)
|
||||
Put(*User) error
|
||||
// FindByUsername must be case-insensitive
|
||||
FindByUsername(username string) (*User, error)
|
||||
UpdateLastLoginAt(id string) error
|
||||
UpdateLastAccessAt(id string) error
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue