clarion/app/controllers/api/slots_controller.rb
2015-10-08 02:34:19 +03:00

9 lines
201 B
Ruby

class Api::SlotsController < Api::ApplicationController
include ::CurrentConferenceAssigning
before_filter :require_current_conference!
def index
@slots = current_conference.slots
end
end