mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
20 lines
374 B
Ruby
20 lines
374 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::Admin::CohortSerializer < ActiveModel::Serializer
|
|
attributes :period, :frequency
|
|
|
|
class CohortDataSerializer < ActiveModel::Serializer
|
|
attributes :date, :rate, :value
|
|
|
|
def date
|
|
object.date.iso8601
|
|
end
|
|
end
|
|
|
|
has_many :data, serializer: CohortDataSerializer
|
|
|
|
def period
|
|
object.period.iso8601
|
|
end
|
|
end
|