mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-25 16:04:22 -05:00
16 lines
227 B
Ruby
16 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
|