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

cohorts_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b77c554908dfcd313032d0d8acb485172166c65 (plain)
1
2
3
4
5
6
7
8
9
10
11
class Admin::CohortsController < Admin::ApplicationController
  def index
    if current_application_settings.usage_ping_enabled
      cohorts_results = Rails.cache.fetch('cohorts', expires_in: 1.day) do
        CohortsService.new.execute
      end

      @cohorts = CohortsSerializer.new.represent(cohorts_results)
    end
  end
end