discourse/app/controllers/wizard_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
403 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-25 13:14:56 -04:00
class WizardController < ApplicationController
requires_login
before_action :ensure_admin
before_action :ensure_wizard_enabled
2016-08-25 13:14:56 -04:00
def index
respond_to do |format|
format.json do
wizard = Wizard::Builder.new(current_user).build
2016-08-25 13:14:56 -04:00
render_serialized(wizard, WizardSerializer)
end
format.html { render body: nil }
end
2016-08-25 13:14:56 -04:00
end
end