mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 20:24:03 +00:00
17 lines
385 B
Ruby
17 lines
385 B
Ruby
module Api
|
|
module V1
|
|
class TracksController < Api::BaseController
|
|
respond_to :json
|
|
|
|
def index
|
|
if params[:conference_id].blank?
|
|
tracks = Track.all
|
|
else
|
|
tracks = Track.joins(:conference)
|
|
tracks = tracks.where("conferences.guid" => params[:conference_id])
|
|
end
|
|
respond_with tracks
|
|
end
|
|
end
|
|
end
|
|
end
|