From 4f86f67716307c1f252bc29bc1beae55f40244fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferdinand=20M=C3=BCtsch?= Date: Sun, 21 Feb 2021 13:12:29 +0100 Subject: [PATCH] chore: fix success messages --- routes/settings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/settings.go b/routes/settings.go index 61c86a5f..6f5bb39e 100644 --- a/routes/settings.go +++ b/routes/settings.go @@ -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) {