|> add_mention_tags
|> add_attributed_to
|> prepare_attachments
+ |> set_conversation
data = data
|> Map.put("object", object)
|> Map.put("tag", tags ++ mentions)
end
+ def set_conversation(object) do
+ Map.put(object, "conversation", object["context"])
+ end
+
def add_attributed_to(object) do
attributedTo = object["attributedTo"] || object["actor"]
assert Enum.member?(object["tag"], expected_mention)
end
- test "it adds the json-ld context" do
+ test "it adds the json-ld context and the conversation property" do
user = insert(:user)
{:ok, activity} = CommonAPI.post(user, %{"status" => "hey"})
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
assert modified["@context"] == "https://www.w3.org/ns/activitystreams"
+ assert modified["object"]["conversation"] == modified["context"]
end
test "it sets the 'attributedTo' property to the actor of the object if it doesn't have one" do