clarion/app/controllers/api/halls_controller.rb

11 lines
253 B
Ruby
Raw Normal View History

2015-10-08 02:34:19 +03:00
class Api::HallsController < 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
@halls = current_conference.halls
2024-10-01 01:36:19 +03:00
fresh_when @halls
2015-10-08 02:34:19 +03:00
end
end