You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
308 B

class Admin::AnalyticsController < Admin::AdminController
helper_method :period
# GET /admin/:locale/analytics
def index
@analytics = GameAnalytics.new(period: period)
end
private
def period
@period ||= params[:period].to_s.presence_in(GameAnalytics::PERIODS.keys) || "all"
end
end