mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 12:58:06 +01:00
7 lines
281 B
Ruby
7 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
|