Class: AhoyCaptain::Locations::RegionsController

Inherits:
ApplicationController show all
Includes:
AhoyCaptain::Limitable
Defined in:
app/controllers/ahoy_captain/locations/regions_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



12
13
14
15
16
17
18
19
# File 'app/controllers/ahoy_captain/locations/regions_controller.rb', line 12

def index
  results = cached(:regions) do
    RegionQuery.call(params)
               .limit(limit)
  end

  @regions = paginate(results).map { |region| RegionDecorator.new(region, self) }
end