clarion/app/controllers/api/slots_controller.rb

10 lines
231 B
Ruby
Raw Permalink Normal View History

2015-10-08 02:34:19 +03:00
class Api::SlotsController < Api::ApplicationController
include ::CurrentConferenceAssigning
include ::PublicApiExposing
2019-04-28 02:15:39 +03:00
before_action :require_current_conference!
2015-10-08 02:34:19 +03:00
def index
@slots = current_conference.slots
end
end