Skip to content

Commit

Permalink
chore: fix success messages
Browse files Browse the repository at this point in the history
  • Loading branch information
muety committed Feb 21, 2021
1 parent 017530a commit 4f86f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4f86f67

Please sign in to comment.