mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 10:09:02 +00:00
Mastodon API: Add unsupported attributes to relationship responses
These attributes are documented as required by the Mastodon API. Since we don’t support them (I think?), respond with default values.
This commit is contained in:
parent
403f9d118d
commit
619f67768a
|
@ -75,8 +75,10 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
|
|||
followed_by: User.following?(target, user),
|
||||
blocking: User.blocks?(user, target),
|
||||
muting: false,
|
||||
muting_notifications: false,
|
||||
requested: false,
|
||||
domain_blocking: false
|
||||
domain_blocking: false,
|
||||
showing_reblogs: false
|
||||
}
|
||||
end
|
||||
|
||||
|
|
|
@ -123,8 +123,10 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
|
|||
followed_by: false,
|
||||
blocking: true,
|
||||
muting: false,
|
||||
muting_notifications: false,
|
||||
requested: false,
|
||||
domain_blocking: false
|
||||
domain_blocking: false,
|
||||
showing_reblogs: false
|
||||
}
|
||||
|
||||
assert expected == AccountView.render("relationship.json", %{user: user, target: other_user})
|
||||
|
|
Loading…
Reference in a new issue