Scaffold for new Wizard - Rails / Ember / Tests

This commit is contained in:
Robin Ward
2016-08-24 14:35:07 -04:00
parent 6070939daa
commit 0471ad393c
23 changed files with 247 additions and 6 deletions

View File

@ -0,0 +1,16 @@
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