12 lines
334 B
Ruby
12 lines
334 B
Ruby
|
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
|