fix: login must be case-insensitive

This commit is contained in:
Deluan 2020-03-01 15:45:41 -05:00
parent a7f8e4ee2b
commit 6f5a322927
3 changed files with 43 additions and 0 deletions

View file

@ -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