Files
discourse/app/controllers/wizard/wizard_controller.rb
2016-09-22 09:48:58 -04:00

17 lines
227 B
Ruby

class Wizard::WizardController < ApplicationController
before_filter :ensure_logged_in
before_filter :ensure_staff
skip_before_filter :check_xhr, :preload_json
layout false
def index
end
def qunit
end
end