diff --git a/api/users.go b/api/users.go index f148109..c8da340 100644 --- a/api/users.go +++ b/api/users.go @@ -283,5 +283,7 @@ func HandleUserPasswordChange(w http.ResponseWriter, r *http.Request) *types.App return newJSONError(err, http.StatusInternalServerError) } + w.WriteHeader(http.StatusNoContent) + return nil }