forked from AkkomaGang/akkoma
Modified deleting an account to run as a task
This commit is contained in:
parent
98b36d359a
commit
d1366f8d46
2 changed files with 2 additions and 6 deletions
|
@ -200,10 +200,8 @@ def follow_import(%{assigns: %{user: user}} = conn, %{"list" => list}) do
|
|||
def delete_account(%{assigns: %{user: user}} = conn, params) do
|
||||
case CommonAPI.Utils.confirm_current_password(user, params) do
|
||||
{:ok, user} ->
|
||||
case User.delete(user) do
|
||||
:ok -> json(conn, %{status: "success"})
|
||||
:error -> json(conn, %{error: "Unable to delete user."})
|
||||
end
|
||||
Task.start(fn -> User.delete(user) end)
|
||||
json(conn, %{status: "success"})
|
||||
|
||||
{:error, msg} ->
|
||||
json(conn, %{error: msg})
|
||||
|
|
|
@ -825,8 +825,6 @@ test "with credentials and valid password", %{conn: conn, user: current_user} do
|
|||
|> post("/api/pleroma/delete_account", %{"password" => "test"})
|
||||
|
||||
assert json_response(conn, 200) == %{"status" => "success"}
|
||||
fetched_user = Repo.get(User, current_user.id)
|
||||
assert fetched_user.info == %{"deactivated" => true}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue