Allow regular users to change their info, including password.

Should fix #199
This commit is contained in:
Deluan 2021-04-28 22:35:25 -04:00
parent 22582392a0
commit a35de2bfd1
9 changed files with 77 additions and 25 deletions

View file

@ -60,6 +60,7 @@ func handleLogin(ds model.DataStore, username string, password string, w http.Re
payload := map[string]interface{}{
"message": "User '" + username + "' authenticated successfully",
"token": tokenString,
"id": user.ID,
"name": user.Name,
"username": username,
"isAdmin": user.IsAdmin,