Files
scube-server/app/controllers/api/tracks_controller.rb
T

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