Conversation: Add accounts to output.

This commit is contained in:
lain 2019-04-15 22:28:42 +02:00
commit 76999c73a7
5 changed files with 23 additions and 3 deletions

View file

@ -85,7 +85,7 @@ defmodule Pleroma.ConversationTest do
conversation_three =
Conversation.get_for_ap_id(context)
|> Repo.preload(:participations)
|> Repo.preload([:participations, :users])
assert conversation_three.id == conversation.id
@ -100,5 +100,17 @@ defmodule Pleroma.ConversationTest do
assert Enum.find(conversation_three.participations, fn %{user_id: user_id} ->
tridi.id == user_id
end)
assert Enum.find(conversation_three.users, fn %{id: user_id} ->
har.id == user_id
end)
assert Enum.find(conversation_three.users, fn %{id: user_id} ->
jafnhar.id == user_id
end)
assert Enum.find(conversation_three.users, fn %{id: user_id} ->
tridi.id == user_id
end)
end
end

View file

@ -334,6 +334,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
}
] = response
assert length(res_accounts) == 2
assert is_binary(res_id)
assert unread == true
assert res_last_status["id"] == direct.id