scube-server/app/controllers/api/tracks_controller.rb
2012-05-03 21:11:03 +00:00

6 lines
103 B
Ruby

class Api::TracksController < Api::ApplicationController
def index
@tracks = Track.all
end
end