AcitvityPub: Outgoing Announces.

This commit is contained in:
lain 2018-02-17 20:47:45 +01:00
parent 32b995fbb6
commit 0f2ad25a7b
2 changed files with 2 additions and 1 deletions

View file

@ -96,7 +96,7 @@ def prepare_outgoing(%{"type" => "Create", "object" => %{"type" => "Note"} = obj
{:ok, data}
end
def prepare_outgoing(%{"type" => type} = data) when type in ["Follow", "Accept", "Like"] do
def prepare_outgoing(%{"type" => type} = data) when type in ["Follow", "Accept", "Like", "Announce"] do
data = data
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")

View file

@ -21,6 +21,7 @@ def render("object.json", %{object: object}) do
}
additional = Map.take(object.data, ["id", "to", "cc", "actor", "content", "summary", "type"])
|> Map.put("attributedTo", object.data["actor"])
Map.merge(base, additional)
end
end