another view for account in admin-fe status_show

This commit is contained in:
Alexander Strizhakov 2020-05-18 10:09:21 +03:00
commit 8f08384d80
No known key found for this signature in database
GPG key ID: 022896A53AEF1381
2 changed files with 9 additions and 1 deletions

View file

@ -42,6 +42,14 @@ defmodule Pleroma.Web.AdminAPI.StatusControllerTest do
|> json_response_and_validate_schema(200)
assert response["id"] == activity.id
account = response["account"]
actor = User.get_by_ap_id(activity.actor)
assert account["id"] == actor.id
assert account["nickname"] == actor.nickname
assert account["deactivated"] == actor.deactivated
assert account["confirmation_pending"] == actor.confirmation_pending
end
end