Class: AhoyCaptain::ExitPagesController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- AhoyCaptain::ExitPagesController
- Includes:
- Limitable
- Defined in:
- app/controllers/ahoy_captain/exit_pages_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
11 12 13 14 15 16 17 |
# File 'app/controllers/ahoy_captain/exit_pages_controller.rb', line 11 def index results = cached(:exit_pages) do ExitPagesQuery.call(params) .limit(limit) end @pages = paginate(results).map { |page| ExitPageDecorator.new(page, self) } end |