12 lines
206 B
Ruby
12 lines
206 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::ContextSerializer < ActivityPub::Serializer
|
|
include RoutingHelper
|
|
|
|
attributes :id, :type, :attributed_to, :first
|
|
|
|
def type
|
|
'Collection'
|
|
end
|
|
end
|