Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cohort_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cdba5b04846039a6567ca0397f7612ed0eed7ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class CohortEntity < Grape::Entity
  include ActionView::Helpers::NumberHelper

  expose :registration_month do |cohort|
    cohort[:registration_month].strftime('%b %Y')
  end

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

  expose :inactive do |cohort|
    number_with_delimiter(cohort[:inactive])
  end

  expose :activity_months, using: CohortActivityMonthEntity
end