forked from AkkomaGang/akkoma
[Pleroma.Web.MastodonAPI.AccountView]: relationship.json: fake endorsed value (false)
This commit is contained in:
parent
43d0b7bf7a
commit
a8eaecadee
2 changed files with 4 additions and 2 deletions
|
@ -79,7 +79,8 @@ def render("relationship.json", %{user: user, target: target}) do
|
||||||
muting_notifications: false,
|
muting_notifications: false,
|
||||||
requested: false,
|
requested: false,
|
||||||
domain_blocking: false,
|
domain_blocking: false,
|
||||||
showing_reblogs: false
|
showing_reblogs: false,
|
||||||
|
endorsed: false
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -126,7 +126,8 @@ test "represent a relationship" do
|
||||||
muting_notifications: false,
|
muting_notifications: false,
|
||||||
requested: false,
|
requested: false,
|
||||||
domain_blocking: false,
|
domain_blocking: false,
|
||||||
showing_reblogs: false
|
showing_reblogs: false,
|
||||||
|
endorsed: false
|
||||||
}
|
}
|
||||||
|
|
||||||
assert expected == AccountView.render("relationship.json", %{user: user, target: other_user})
|
assert expected == AccountView.render("relationship.json", %{user: user, target: other_user})
|
||||||
|
|
Loading…
Reference in a new issue