Class: AhoyCaptain::DevicesController

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



11
12
13
14
15
16
17
18
# File 'app/controllers/ahoy_captain/devices_controller.rb', line 11

def index
  results = cached(:devices, params[:devices_type]) do
    DeviceQuery.call(params)
               .limit(limit)
  end

  @devices = results.map { |device| DeviceDecorator.new(device, self) }
end