Better pagination for ActivityPub outbox (#7356)
This commit is contained in:
parent
d181aad033
commit
2c1f7b2ece
4 changed files with 50 additions and 12 deletions
|
@ -7,12 +7,14 @@ class ActivityPub::CollectionSerializer < ActiveModel::Serializer
|
|||
super
|
||||
end
|
||||
|
||||
attributes :id, :type, :total_items
|
||||
attributes :id, :type
|
||||
attribute :total_items, if: -> { object.size.present? }
|
||||
attribute :next, if: -> { object.next.present? }
|
||||
attribute :prev, if: -> { object.prev.present? }
|
||||
attribute :part_of, if: -> { object.part_of.present? }
|
||||
|
||||
has_one :first, if: -> { object.first.present? }
|
||||
has_one :last, if: -> { object.last.present? }
|
||||
has_many :items, key: :items, if: -> { (!object.items.nil? || page?) && !ordered? }
|
||||
has_many :items, key: :ordered_items, if: -> { (!object.items.nil? || page?) && ordered? }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue