Sha256: a77244123ee83e8875f23d4343848b4aea512e7232b8fa3d4d5c586ba4385b6d

Contents?: true

Size: 432 Bytes

Versions: 5

Compression:

Stored size: 432 Bytes

Contents

# frozen_string_literal: true

module Lcms
  module Engine
    class EnhanceInstructionController < Lcms::Engine::ApplicationController
      include HeapNotifyable

      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
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lcms-engine-0.1.4 app/controllers/lcms/engine/enhance_instruction_controller.rb
lcms-engine-0.1.3 app/controllers/lcms/engine/enhance_instruction_controller.rb
lcms-engine-0.2.0 app/controllers/lcms/engine/enhance_instruction_controller.rb
lcms-engine-0.1.2 app/controllers/lcms/engine/enhance_instruction_controller.rb
lcms-engine-0.1.0 app/controllers/lcms/engine/enhance_instruction_controller.rb