scube-server/app/controllers/api/tracks_controller.rb
2014-04-01 19:02:23 +00:00

8 lines
118 B
Ruby

module API
class TracksController < ApplicationController
def index
@tracks = Track.all
end
end
end