clarion/app/controllers/api/slots_controller.rb

10 lines
231 B
Ruby

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