mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-05 11:41:06 -05:00
15 lines
294 B
Ruby
15 lines
294 B
Ruby
module Api
|
|
module V1
|
|
class TracksController < Api::BaseController
|
|
load_resource :conference, find_by: :short_title
|
|
respond_to :json
|
|
|
|
def index
|
|
tracks = @conference ? @conference.program.tracks : Track.all
|
|
|
|
respond_with tracks
|
|
end
|
|
end
|
|
end
|
|
end
|