clarion/app/controllers/api/halls_controller.rb
Vencislav Atanasov b732aff523 Add CORS header in order to access the public API from JavaScript
(I have no idea what I'm doing)
2016-11-04 15:34:44 +02:00

10 lines
231 B
Ruby

class Api::HallsController < Api::ApplicationController
include ::CurrentConferenceAssigning
include ::PublicApiExposing
before_filter :require_current_conference!
def index
@halls = current_conference.halls
end
end