2015-10-08 02:34:19 +03:00
|
|
|
class Api::SlotsController < Api::ApplicationController
|
|
|
|
include ::CurrentConferenceAssigning
|
2016-11-04 15:34:44 +02:00
|
|
|
include ::PublicApiExposing
|
2015-10-08 02:34:19 +03:00
|
|
|
before_filter :require_current_conference!
|
|
|
|
|
|
|
|
def index
|
|
|
|
@slots = current_conference.slots
|
|
|
|
end
|
|
|
|
end
|