mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-27 02:24:03 -05:00
10 lines
159 B
Ruby
10 lines
159 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::AnnualReportEventSerializer < ActiveModel::Serializer
|
|
attributes :year
|
|
|
|
def year
|
|
object.year.to_s
|
|
end
|
|
end
|