mirror of
https://github.com/glitch-soc/mastodon
synced 2025-07-16 16:56:43 +00:00
5 lines
184 B
Ruby
5 lines
184 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::CollectionPresenter < ActiveModelSerializers::Model
|
|
attributes :id, :type, :size, :items, :part_of, :first, :last, :next, :prev
|
|
end
|