forked from AkkomaGang/akkoma
Apply suggestion to lib/pleroma/web/admin_api/controllers/admin_api_controller.ex
This commit is contained in:
parent
3249141588
commit
047a11c48f
1 changed files with 1 additions and 5 deletions
|
@ -715,11 +715,7 @@ def update_user_credentials(
|
||||||
json(conn, %{status: "success"})
|
json(conn, %{status: "success"})
|
||||||
else
|
else
|
||||||
{:error, changeset} ->
|
{:error, changeset} ->
|
||||||
errors =
|
errors = Map.new(changeset.errors, fn {key, {error, _}} -> {key, error} end)
|
||||||
Enum.reduce(changeset.errors, %{}, fn
|
|
||||||
{key, {error, _}}, acc ->
|
|
||||||
Map.put(acc, key, error)
|
|
||||||
end)
|
|
||||||
|
|
||||||
json(conn, %{errors: errors})
|
json(conn, %{errors: errors})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue