debian-mirror-gitlab/app/controllers/concerns/cycle_analytics_params.rb
2019-12-04 20:38:33 +05:30

23 lines
420 B
Ruby

# frozen_string_literal: true
module CycleAnalyticsParams
extend ActiveSupport::Concern
def options(params)
@options ||= { from: start_date(params), current_user: current_user }
end
def start_date(params)
case params[:start_date]
when '7'
7.days.ago
when '30'
30.days.ago
else
90.days.ago
end
end
end
CycleAnalyticsParams.prepend_if_ee('EE::CycleAnalyticsParams')