1
0
Fork 0
discourse-custom-wizard-unl.../app/controllers/wizard.rb

16 Zeilen
403 B
Ruby

2017-09-25 16:47:40 +02:00
class CustomWizard::WizardController < ::ApplicationController
def set_layout
File.expand_path('../../views/layouts/custom_wizard.html.erb', __FILE__)
end
def index
2017-09-23 04:34:07 +02:00
respond_to do |format|
format.json do
2017-09-25 16:47:40 +02:00
wizard = CustomWizard::Builder.new(current_user, params[:name]).build
2017-09-23 04:34:07 +02:00
render_serialized(wizard, WizardSerializer)
end
format.html {}
end
end
end