summaryrefslogtreecommitdiff
path: root/test/web/mastodon_api/views/notification_view_test.exs
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2020-05-10 09:16:48 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2020-05-10 09:16:48 +0300
commitaee88d11be898921d79ad7f1481ab055190f4dfd (patch)
treed1b4c8b3c971233fce18755fbd4df61d172c46ef /test/web/mastodon_api/views/notification_view_test.exs
parentac4250a18c27477974a643a730ef89d6c66220f9 (diff)
downloadpleroma-aee88d11be898921d79ad7f1481ab055190f4dfd.tar.gz
pleroma-aee88d11be898921d79ad7f1481ab055190f4dfd.zip
[#2456] Removed support for embedded relationships in account view.
Diffstat (limited to 'test/web/mastodon_api/views/notification_view_test.exs')
-rw-r--r--test/web/mastodon_api/views/notification_view_test.exs21
1 files changed, 7 insertions, 14 deletions
diff --git a/test/web/mastodon_api/views/notification_view_test.exs b/test/web/mastodon_api/views/notification_view_test.exs
index 61e6e3ae5..7cdba2fe0 100644
--- a/test/web/mastodon_api/views/notification_view_test.exs
+++ b/test/web/mastodon_api/views/notification_view_test.exs
@@ -45,8 +45,7 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
account:
AccountView.render("show.json", %{
user: user,
- for: mentioned_user,
- skip_relationships: true
+ for: mentioned_user
}),
status: StatusView.render("show.json", %{activity: activity, for: mentioned_user}),
created_at: Utils.to_masto_date(notification.inserted_at)
@@ -67,8 +66,7 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
id: to_string(notification.id),
pleroma: %{is_seen: false},
type: "favourite",
- account:
- AccountView.render("show.json", %{user: another_user, for: user, skip_relationships: true}),
+ account: AccountView.render("show.json", %{user: another_user, for: user}),
status: StatusView.render("show.json", %{activity: create_activity, for: user}),
created_at: Utils.to_masto_date(notification.inserted_at)
}
@@ -88,8 +86,7 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
id: to_string(notification.id),
pleroma: %{is_seen: false},
type: "reblog",
- account:
- AccountView.render("show.json", %{user: another_user, for: user, skip_relationships: true}),
+ account: AccountView.render("show.json", %{user: another_user, for: user}),
status: StatusView.render("show.json", %{activity: reblog_activity, for: user}),
created_at: Utils.to_masto_date(notification.inserted_at)
}
@@ -107,8 +104,7 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
id: to_string(notification.id),
pleroma: %{is_seen: false},
type: "follow",
- account:
- AccountView.render("show.json", %{user: follower, for: followed, skip_relationships: true}),
+ account: AccountView.render("show.json", %{user: follower, for: followed}),
created_at: Utils.to_masto_date(notification.inserted_at)
}
@@ -151,10 +147,8 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
id: to_string(notification.id),
pleroma: %{is_seen: false},
type: "move",
- account:
- AccountView.render("show.json", %{user: old_user, for: follower, skip_relationships: true}),
- target:
- AccountView.render("show.json", %{user: new_user, for: follower, skip_relationships: true}),
+ account: AccountView.render("show.json", %{user: old_user, for: follower}),
+ target: AccountView.render("show.json", %{user: new_user, for: follower}),
created_at: Utils.to_masto_date(notification.inserted_at)
}
@@ -179,8 +173,7 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
pleroma: %{is_seen: false},
type: "pleroma:emoji_reaction",
emoji: "☕",
- account:
- AccountView.render("show.json", %{user: other_user, for: user, skip_relationships: true}),
+ account: AccountView.render("show.json", %{user: other_user, for: user}),
status: StatusView.render("show.json", %{activity: activity, for: user}),
created_at: Utils.to_masto_date(notification.inserted_at)
}