Files
grecia/app/controllers/officing/results_controller.rb
2016-09-16 13:06:30 +02: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