mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 20:21:25 +08:00
17 lines
227 B
Ruby
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
|