b732aff523
(I have no idea what I'm doing)
10 lines
258 B
Ruby
10 lines
258 B
Ruby
class Api::TracksController < Api::ApplicationController
|
|
include ::CurrentConferenceAssigning
|
|
include ::PublicApiExposing
|
|
before_filter :require_current_conference!
|
|
|
|
def index
|
|
@tracks = current_conference.tracks.includes(:translations)
|
|
end
|
|
end
|