diff options
Diffstat (limited to 'app/presenters')
-rw-r--r-- | app/presenters/activitypub/collection_presenter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/presenters/activitypub/collection_presenter.rb b/app/presenters/activitypub/collection_presenter.rb index 39657276f..ec84ab1a3 100644 --- a/app/presenters/activitypub/collection_presenter.rb +++ b/app/presenters/activitypub/collection_presenter.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class ActivityPub::CollectionPresenter < ActiveModelSerializers::Model - attributes :id, :type, :size, :items, :part_of, :first, :next, :prev + attributes :id, :type, :size, :items, :part_of, :first, :last, :next, :prev end |