implement Move activities #45

Merged
floatingghost merged 13 commits from :move into develop 2022-07-04 16:29:40 +00:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 467c45ffa6 - Show all commits

View file

@ -293,7 +293,8 @@ def add_alias_operation do
}
}),
400 => Operation.response("Error", "application/json", ApiError),
403 => Operation.response("Error", "application/json", ApiError)
403 => Operation.response("Error", "application/json", ApiError),
404 => Operation.response("Error", "application/json", ApiError)
}
}
end

View file

@ -196,6 +196,11 @@ def add_alias(%{assigns: %{user: user}, body_params: body_params} = conn, _) do
{:ok, _user} <- user |> User.add_alias(alias_user) do
json(conn, %{status: "success"})
else
{:not_found, _} ->
conn
|> put_status(404)
|> json(%{error: "Target account does not exist."})
{:error, error} ->
json(conn, %{error: error})
end