This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-07-15 03:01:39 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::CollectionPresenter < ActiveModelSerializers::Model
|
2019-02-28 15:22:21 +01:00
|
|
|
attributes :id, :type, :size, :items, :page, :part_of, :first, :last, :next, :prev
|
2017-07-15 03:01:39 +02:00
|
|
|
end
|