summaryrefslogtreecommitdiff
path: root/app/serializers/cohort_activity_month_entity.rb
blob: e6788a8b5966869c4b1da64cc66adc0eaf014613 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CohortActivityMonthEntity < Grape::Entity
  include ActionView::Helpers::NumberHelper

  expose :total do |cohort_activity_month|
    number_with_delimiter(cohort_activity_month[:total])
  end

  expose :percentage do |cohort_activity_month|
    number_to_percentage(cohort_activity_month[:percentage], precision: 0)
  end
end