forked from AkkomaGang/akkoma
mastodon api: account view: fetch follow state and use it to populate requested
field
This commit is contained in:
parent
a71b822013
commit
3e751496e3
1 changed files with 4 additions and 1 deletions
|
@ -72,6 +72,9 @@ def render("mention.json", %{user: user}) do
|
||||||
end
|
end
|
||||||
|
|
||||||
def render("relationship.json", %{user: user, target: target}) do
|
def render("relationship.json", %{user: user, target: target}) do
|
||||||
|
follow_activity = Pleroma.Web.ActivityPub.Utils.fetch_latest_follow(user, target)
|
||||||
|
requested = follow_activity.data["state"] == "pending"
|
||||||
|
|
||||||
%{
|
%{
|
||||||
id: to_string(target.id),
|
id: to_string(target.id),
|
||||||
following: User.following?(user, target),
|
following: User.following?(user, target),
|
||||||
|
@ -79,7 +82,7 @@ def render("relationship.json", %{user: user, target: target}) do
|
||||||
blocking: User.blocks?(user, target),
|
blocking: User.blocks?(user, target),
|
||||||
muting: false,
|
muting: false,
|
||||||
muting_notifications: false,
|
muting_notifications: false,
|
||||||
requested: false,
|
requested: requested,
|
||||||
domain_blocking: false,
|
domain_blocking: false,
|
||||||
showing_reblogs: false,
|
showing_reblogs: false,
|
||||||
endorsed: false
|
endorsed: false
|
||||||
|
|
Loading…
Reference in a new issue