Files
nairobi/app/controllers/officing/results_controller.rb
2016-11-14 13:51:09 +01:00

15 lines
173 B
Ruby

class Officing::ResultsController < Officing::BaseController
layout 'admin'
before_action :authenticate_user!
def index
end
def show
end
def new
end
end