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

9 lines
124 B
Ruby

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