chore: fix success messages

This commit is contained in:
Ferdinand Mütsch 2021-02-21 13:12:29 +01:00
parent 017530ac4a
commit 4f86f67716
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ func (h *SettingsHandler) actionUpdateUser(w http.ResponseWriter, r *http.Reques
return http.StatusInternalServerError, "", conf.ErrInternalServerError
}
return http.StatusOK, "alias added successfully", ""
return http.StatusOK, "user updated successfully", ""
}
func (h *SettingsHandler) actionChangePassword(w http.ResponseWriter, r *http.Request) (int, string, string) {