Class: AhoyCaptain::Filters::LocationsController
- Inherits:
-
BaseController
- Object
- ActionController::Base
- ApplicationController
- BaseController
- AhoyCaptain::Filters::LocationsController
- Defined in:
- app/controllers/ahoy_captain/filters/locations_controller.rb
Instance Method Summary collapse
Methods inherited from ApplicationController
Methods included from Rangeable
Methods included from CompareMode
#compare_mode?, #comparison_mode, included
Instance Method Details
#index ⇒ Object
4 5 6 7 8 |
# File 'app/controllers/ahoy_captain/filters/locations_controller.rb', line 4 def index query = visit_query.all render json: query.select("distinct #{params[:type]}").where.not(params[:type] => nil).group(params[:type]).order(Arel.sql "count(*) desc").limit(50).pluck(params[:type]).map { |city| serialize(city) } end |