2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module CycleAnalyticsParams
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
def options(params)
|
|
|
|
@options ||= { from: start_date(params), current_user: current_user }
|
|
|
|
end
|
|
|
|
|
|
|
|
def start_date(params)
|
2018-03-17 18:26:18 +05:30
|
|
|
case params[:start_date]
|
|
|
|
when '7'
|
|
|
|
7.days.ago
|
|
|
|
when '30'
|
|
|
|
30.days.ago
|
|
|
|
else
|
|
|
|
90.days.ago
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|