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

22 lines
203 B
Ruby

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