mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-11 02:28:45 +00:00
12 lines
337 B
Elixir
12 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
|