ActivityPub: tags -> tag.

This commit is contained in:
lain 2018-02-17 14:20:53 +01:00
parent 05ba6ca1b8
commit 5682e48a25
2 changed files with 5 additions and 5 deletions

View File

@ -58,12 +58,12 @@ def add_mention_tags(object) do
mentions = object["to"] mentions = object["to"]
|> Enum.map(fn (ap_id) -> User.get_cached_by_ap_id(ap_id) end) |> Enum.map(fn (ap_id) -> User.get_cached_by_ap_id(ap_id) end)
|> Enum.filter(&(&1)) |> Enum.filter(&(&1))
|> Enum.map(fn(user) -> %{"type" => "mention", "href" => user.ap_id, "name" => "@#{user.nickname}"} end) |> Enum.map(fn(user) -> %{"type" => "Mention", "href" => user.ap_id, "name" => "@#{user.nickname}"} end)
tags = object["tags"] || [] tags = object["tag"] || []
object object
|> Map.put("tags", tags ++ mentions) |> Map.put("tag", tags ++ mentions)
end end
def add_attributed_to(object) do def add_attributed_to(object) do

View File

@ -45,10 +45,10 @@ test "it turns mentions into tags" do
expected_tag = %{ expected_tag = %{
"href" => other_user.ap_id, "href" => other_user.ap_id,
"name" => "@#{other_user.nickname}", "name" => "@#{other_user.nickname}",
"type" => "mention" "type" => "Mention"
} }
assert Enum.member?(object["tags"], expected_tag) assert Enum.member?(object["tag"], expected_tag)
end end
test "it adds the json-ld context" do test "it adds the json-ld context" do