mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-13 12:44:51 +00:00
11 lines
337 B
Elixir
11 lines
337 B
Elixir
defmodule Pleroma.Web.ActivityPub.ObjectView do
|
|
use Pleroma.Web, :view
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
|
|
|
def render("object.json", %{object: object}) do
|
|
base = Pleroma.Web.ActivityPub.Utils.make_json_ld_header()
|
|
|
|
additional = Transmogrifier.prepare_object(object.data)
|
|
Map.merge(base, additional)
|
|
end
|
|
end
|