blob: 28331f0c41d6005880d17b79e260345a8e42cf1e (
plain) (
blame)
1
2
3
4
5
|
# frozen_string_literal: true
class ActivityPub::CollectionPresenter < ActiveModelSerializers::Model
attributes :id, :type, :size, :items, :page, :part_of, :first, :last, :next, :prev
end
|