scube-server/app/controllers/api/tracks_controller.rb
2015-05-02 00:11:52 +00:00

12 lines
179 B
Ruby

module API
class TracksController < ApplicationController
def index
@tracks = Track.all
end
def show
@track = Track.find(params[:id])
end
end
end