Output tags list in TwAPI.

This commit is contained in:
Roger Braun 2017-06-18 14:43:44 +02:00
parent 8feec8d390
commit fafb765c48
2 changed files with 4 additions and 2 deletions

View File

@ -118,7 +118,8 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
"repeat_num" => announcement_count,
"favorited" => to_boolean(favorited),
"repeated" => to_boolean(repeated),
"external_url" => activity.data["id"]
"external_url" => activity.data["id"],
"tags" => activity.data["object"]["tag"] || []
}
end

View File

@ -124,7 +124,8 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do
"repeat_num" => 3,
"favorited" => false,
"repeated" => false,
"external_url" => activity.data["id"]
"external_url" => activity.data["id"],
"tags" => ["content", "mentioning", "nsfw"]
}
assert ActivityRepresenter.to_map(activity, %{user: user, for: follower, mentioned: [mentioned_user]}) == expected_status