Mastodon/app/serializers/rest/collection_serializer.rb
2025-11-28 13:30:43 +00:00

9 lines
267 B
Ruby

# frozen_string_literal: true
class REST::CollectionSerializer < ActiveModel::Serializer
attributes :uri, :name, :description, :local, :sensitive, :discoverable,
:created_at, :updated_at
belongs_to :account, serializer: REST::AccountSerializer
end