Merge branch 'fix-collection-next' into 'master'

Fix collection next attribute and add prev attribute

Closes #546

See merge request framasoft/mobilizon!785
This commit is contained in:
Thomas Citharel 2021-01-12 17:29:00 +01:00
commit 7e31d5354b

View File

@ -153,9 +153,19 @@ defmodule Mobilizon.Web.ActivityPub.ActorView do
"orderedItems" => Enum.map(collection, &item/1)
}
if offset < total do
Map.put(map, "next", Actor.build_url(preferred_username, endpoint, page: page + 1))
end
map =
if offset < total do
Map.put(map, "next", Actor.build_url(preferred_username, endpoint, page: page + 1))
else
map
end
map =
if offset > total do
Map.put(map, "prev", Actor.build_url(preferred_username, endpoint, page: page - 1))
else
map
end
map
end