aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadposter <hannah+pleroma@coffee-and-dreams.uk>2019-07-23 15:13:05 +0100
committerSadposter <hannah+pleroma@coffee-and-dreams.uk>2019-07-23 15:13:05 +0100
commit452980652dc749d71e96b1cbb17d68d393121a78 (patch)
tree1bc4e63901091d17778b3c3714ae7f11e46ee55c
parentfd1fa5a2ec922575bc8b75dabe224337977c8e3e (diff)
downloadpleroma-452980652dc749d71e96b1cbb17d68d393121a78.tar.gz
Mix format
-rw-r--r--lib/pleroma/web/mastodon_api/mastodon_api_controller.ex24
-rw-r--r--test/web/mastodon_api/mastodon_api_controller_test.exs36
2 files changed, 32 insertions, 28 deletions
diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
index ccebcd415..9269a5a29 100644
--- a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
+++ b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
@@ -885,11 +885,13 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
q = from(u in User, where: u.ap_id in ^likes)
users = Repo.all(q)
- users = if is_nil(user) do
- users
- else
- Enum.filter(users, &(not User.blocks?(user, &1)))
- end
+
+ users =
+ if is_nil(user) do
+ users
+ else
+ Enum.filter(users, &(not User.blocks?(user, &1)))
+ end
conn
|> put_view(AccountView)
@@ -905,11 +907,13 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
q = from(u in User, where: u.ap_id in ^announces)
users = Repo.all(q)
- users = if is_nil(user) do
- users
- else
- Enum.filter(users, &(not User.blocks?(user, &1)))
- end
+
+ users =
+ if is_nil(user) do
+ users
+ else
+ Enum.filter(users, &(not User.blocks?(user, &1)))
+ end
conn
|> put_view(AccountView)
diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs
index 00ca320d3..49650b1de 100644
--- a/test/web/mastodon_api/mastodon_api_controller_test.exs
+++ b/test/web/mastodon_api/mastodon_api_controller_test.exs
@@ -3788,17 +3788,17 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
end
test "does not fail on an unauthententicated request", %{conn: conn, activity: activity} do
- other_user = insert(:user)
- {:ok, _, _} = CommonAPI.favorite(activity.id, other_user)
+ other_user = insert(:user)
+ {:ok, _, _} = CommonAPI.favorite(activity.id, other_user)
- response =
- conn
- |> assign(:user, nil)
- |> get("/api/v1/#{activity.id}/favourited_by")
- |> json_response(:ok)
+ response =
+ conn
+ |> assign(:user, nil)
+ |> get("/api/v1/#{activity.id}/favourited_by")
+ |> json_response(:ok)
- [%{"id" => id}] = response
- assert id == other_user.id
+ [%{"id" => id}] = response
+ assert id == other_user.id
end
end
@@ -3859,17 +3859,17 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
end
test "does not fail on an unauthententicated request", %{conn: conn, activity: activity} do
- other_user = insert(:user)
- {:ok, _, _} = CommonAPI.favorite(activity.id, other_user)
+ other_user = insert(:user)
+ {:ok, _, _} = CommonAPI.favorite(activity.id, other_user)
- response =
- conn
- |> assign(:user, nil)
- |> get("/api/v1/#{activity.id}/reblogged_by")
- |> json_response(:ok)
+ response =
+ conn
+ |> assign(:user, nil)
+ |> get("/api/v1/#{activity.id}/reblogged_by")
+ |> json_response(:ok)
- [%{"id" => id}] = response
- assert id == other_user.id
+ [%{"id" => id}] = response
+ assert id == other_user.id
end
end