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