MastoAPI: Add blocking to AccountView.

This commit is contained in:
Roger Braun 2017-11-03 08:23:31 +01:00
parent 9b63647aff
commit 33beb51da4
2 changed files with 3 additions and 2 deletions

View File

@ -55,7 +55,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
id: target.id,
following: User.following?(user, target),
followed_by: User.following?(target, user),
blocking: false,
blocking: User.blocks?(user, target),
muting: false,
requested: false,
domain_blocking: false

View File

@ -51,12 +51,13 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
other_user = insert(:user)
{:ok, user} = User.follow(user, other_user)
{:ok, user} = User.block(user, other_user)
expected = %{
id: other_user.id,
following: true,
followed_by: false,
blocking: false,
blocking: true,
muting: false,
requested: false,
domain_blocking: false