clarion/app/controllers/api/halls_controller.rb

10 lines
231 B
Ruby
Raw Normal View History

2015-10-08 02:34:19 +03:00
class Api::HallsController < Api::ApplicationController
include ::CurrentConferenceAssigning
include ::PublicApiExposing
2015-10-08 02:34:19 +03:00
before_filter :require_current_conference!
def index
@halls = current_conference.halls
end
end