mirror of
https://github.com/mastodon/mastodon
synced 2024-11-28 06:48:28 +09:00
8 lines
281 B
Ruby
8 lines
281 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::AnnualReportsSerializer < ActiveModel::Serializer
|
|
has_many :annual_reports, serializer: REST::AnnualReportSerializer
|
|
has_many :accounts, serializer: REST::AccountSerializer
|
|
has_many :statuses, serializer: REST::StatusSerializer
|
|
end
|