11 lines
253 B
Ruby
11 lines
253 B
Ruby
class Api::HallsController < Api::ApplicationController
|
|
include ::CurrentConferenceAssigning
|
|
include ::PublicApiExposing
|
|
before_action :require_current_conference!
|
|
|
|
def index
|
|
@halls = current_conference.halls
|
|
fresh_when @halls
|
|
end
|
|
end
|