maybe keep naming it Collection

Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk 2025-03-19 10:43:34 +01:00
parent 9492825d0b
commit 23adec42fd
2 changed files with 7 additions and 6 deletions

View file

@ -714,12 +714,12 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
def set_replies(%{"id" => object_id} = object) do
replies_collection = %{
"id" => object_id <> "/replies",
"type" => "OrderedCollection",
"type" => "Collection",
"first" => %{
"type" => "OrderedCollectionPage",
"type" => "CollectionPage",
"partOf" => object_id <> "/replies",
"next" => object_id <> "/replies?only_other_accounts=true&page=true",
"orderedItems" => []
"items" => []
}
# object_id <> "/replies?page=true"
}

View file

@ -42,7 +42,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
def render("replies_collection.json", %{user: user, object: object, iri: iri}) do
%{
"id" => iri,
"type" => "OrderedCollection",
"type" => "Collection",
"first" =>
render("replies_collection_page.json", %{
user: user,
@ -51,6 +51,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
iri: iri
})
|> Map.merge(%{"next" => iri <> "?only_other_accounts=true&page=true"})
|> Map.drop(["@context"])
}
|> Map.merge(Utils.make_json_ld_header())
end
@ -79,9 +80,9 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
%{
"id" => iri <> "?only_other_accounts=#{only_other_accounts}&page=true",
"type" => "OrderedCollectionPage",
"type" => "CollectionPage",
"partOf" => iri,
"orderedItems" => collection
"items" => collection
}
|> Map.merge(Utils.make_json_ld_header())
end