skill-assessment-app/app/controllers/admin/quiz_controller.rb
2016-08-22 16:26:21 -05:00

22 lines
199 B
Ruby

module Admin
class QuizController < AdminController
def index
end
def new
end
def create
end
def view
end
def edit
end
def update
end
end
end