skill-assessment-app/app/controllers/admin/question_controller.rb

22 lines
203 B
Ruby
Raw Normal View History

2016-08-17 17:49:09 -05:00
module Admin
class QuestionController < AdminController
def index
end
def new
end
def create
end
def view
end
def edit
end
def update
end
end
end