discourse/app/controllers/wizard_controller.rb
Sam 41986cdb2f Refactor requires login logic, reduce duplicate code
This also corrects the positioning in the chain of the check
and removes misuse of prepend_before_action
2018-02-01 15:17:59 +11:00

28 lines
616 B
Ruby

require_dependency 'wizard'
require_dependency 'wizard/builder'
class WizardController < ApplicationController
requires_login except: [:qunit]
before_action :ensure_admin, except: [:qunit]
before_action :ensure_wizard_enabled, only: [:index]
skip_before_action :check_xhr, :preload_json
layout false
def index
respond_to do |format|
format.json do
wizard = Wizard::Builder.new(current_user).build
render_serialized(wizard, WizardSerializer)
end
format.html {}
end
end
def qunit
raise Discourse::InvalidAccess.new if Rails.env.production?
end
end