mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 22:18:06 +01:00
15 lines
386 B
Ruby
15 lines
386 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::OutboxSerializer < ActivityPub::CollectionSerializer
|
|
def self.serializer_for(model, options)
|
|
if model.instance_of?(::ActivityPub::ActivityPresenter)
|
|
ActivityPub::ActivitySerializer
|
|
else
|
|
super
|
|
end
|
|
end
|
|
|
|
def items
|
|
object.items.map { |status| ActivityPub::ActivityPresenter.from_status(status) }
|
|
end
|
|
end
|