mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Allow regular users to change their info, including password.
Should fix #199
This commit is contained in:
parent
22582392a0
commit
a35de2bfd1
9 changed files with 77 additions and 25 deletions
|
@ -37,6 +37,7 @@ func CreateToken(u *model.User) (string, error) {
|
|||
claims := token.Claims.(jwt.MapClaims)
|
||||
claims["iss"] = consts.JWTIssuer
|
||||
claims["sub"] = u.UserName
|
||||
claims["uid"] = u.ID
|
||||
claims["adm"] = u.IsAdmin
|
||||
|
||||
return TouchToken(token)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue