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
|