API with more options, includes #712

This commit is contained in:
Stella Rouzi 2015-10-25 00:36:23 +03:00
parent 28e55f3f50
commit ecef151f91
7 changed files with 86 additions and 38 deletions

View file

@ -1,15 +1,12 @@
module Api
module V1
class TracksController < Api::BaseController
load_resource :conference, find_by: :short_title
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
@conference ? (tracks = @conference.tracks) : (tracks = Track.all)
respond_with tracks
end
end