|
|
|
@ -42,7 +42,12 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do |
|
|
|
|
id: to_string(notification.id), |
|
|
|
|
pleroma: %{is_seen: false}, |
|
|
|
|
type: "mention", |
|
|
|
|
account: AccountView.render("show.json", %{user: user, for: mentioned_user}), |
|
|
|
|
account: |
|
|
|
|
AccountView.render("show.json", %{ |
|
|
|
|
user: user, |
|
|
|
|
for: mentioned_user, |
|
|
|
|
skip_relationships: true |
|
|
|
|
}), |
|
|
|
|
status: StatusView.render("show.json", %{activity: activity, for: mentioned_user}), |
|
|
|
|
created_at: Utils.to_masto_date(notification.inserted_at) |
|
|
|
|
} |
|
|
|
@ -62,7 +67,8 @@ 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}), |
|
|
|
|
account: |
|
|
|
|
AccountView.render("show.json", %{user: another_user, for: user, skip_relationships: true}), |
|
|
|
|
status: StatusView.render("show.json", %{activity: create_activity, for: user}), |
|
|
|
|
created_at: Utils.to_masto_date(notification.inserted_at) |
|
|
|
|
} |
|
|
|
@ -82,7 +88,8 @@ 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}), |
|
|
|
|
account: |
|
|
|
|
AccountView.render("show.json", %{user: another_user, for: user, skip_relationships: true}), |
|
|
|
|
status: StatusView.render("show.json", %{activity: reblog_activity, for: user}), |
|
|
|
|
created_at: Utils.to_masto_date(notification.inserted_at) |
|
|
|
|
} |
|
|
|
@ -100,7 +107,8 @@ 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}), |
|
|
|
|
account: |
|
|
|
|
AccountView.render("show.json", %{user: follower, for: followed, skip_relationships: true}), |
|
|
|
|
created_at: Utils.to_masto_date(notification.inserted_at) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -143,8 +151,10 @@ 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}), |
|
|
|
|
target: AccountView.render("show.json", %{user: new_user, for: follower}), |
|
|
|
|
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}), |
|
|
|
|
created_at: Utils.to_masto_date(notification.inserted_at) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -169,7 +179,8 @@ 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}), |
|
|
|
|
account: |
|
|
|
|
AccountView.render("show.json", %{user: other_user, for: user, skip_relationships: true}), |
|
|
|
|
status: StatusView.render("show.json", %{activity: activity, for: user}), |
|
|
|
|
created_at: Utils.to_masto_date(notification.inserted_at) |
|
|
|
|
} |
|
|
|
|