Output tags list in TwAPI.
This commit is contained in:
parent
8feec8d390
commit
fafb765c48
2 changed files with 4 additions and 2 deletions
|
@ -118,7 +118,8 @@ def to_map(%Activity{data: %{"object" => %{"content" => content} = object}} = ac
|
|||
"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
|
||||
|
||||
|
|
|
@ -124,7 +124,8 @@ test "an activity" 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
|
||||
|
|
Loading…
Reference in a new issue