9110db41c5
* Federate pinned statuses over ActivityPub * Display pinned toots in web UI Fix #6117 * Fix migration * Fix tests * Update outbox_serializer.rb * Update remove_serializer.rb * Update add_serializer.rb * Update fetch_featured_collection_service.rb
8 lines
231 B
Ruby
8 lines
231 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::OutboxSerializer < ActivityPub::CollectionSerializer
|
|
def self.serializer_for(model, options)
|
|
return ActivityPub::ActivitySerializer if model.is_a?(Status)
|
|
super
|
|
end
|
|
end
|