mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 17:51:36 +01:00
9 lines
159 B
Ruby
9 lines
159 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::AnnualReportEventSerializer < ActiveModel::Serializer
|
|
attributes :year
|
|
|
|
def year
|
|
object.year.to_s
|
|
end
|
|
end
|