Class: AhoyCaptain::Filters::UtmsController

Inherits:
BaseController show all
Defined in:
app/controllers/ahoy_captain/filters/utms_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#period

Methods included from Rangeable

#period

Methods included from CompareMode

#compare_mode?, #comparison_mode, included

Instance Method Details

#indexObject



4
5
6
7
# File 'app/controllers/ahoy_captain/filters/utms_controller.rb', line 4

def index
  query = visit_query.select("#{params[:type]}", "count(#{params[:type]}) as total").group(params[:type]).order(Arel.sql "count(#{params[:type]}) desc").pluck(params[:type]).map { |city| serialize(city) }
  render json: query
end