Class: Lcms::Engine::EnhanceInstructionController

Inherits:
ApplicationController show all
Includes:
HeapNotifyable
Defined in:
app/controllers/lcms/engine/enhance_instruction_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



8
9
10
11
12
13
14
15
# File 'app/controllers/lcms/engine/enhance_instruction_controller.rb', line 8

def index
  heap_notify 'Visit enhance instruction'
  @props = EnhanceInstructionInteractor.call(self).props
  respond_to do |format|
    format.html
    format.json { render json: @props }
  end
end