scube-server/app/controllers/tracks_controller.rb
2011-07-19 19:42:45 +00:00

9 lines
124 B
Ruby

class TracksController < ApplicationController
def show
@track = Track.find params[:id]
end
def stream
end
end