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

8 lines
191 B
Ruby

class Api::SoundsController < Api::ApplicationController
# FIXME: add some tests!
def show
sound = Sound.find params[:id]
send_file sound.path, :type => sound.mime_type
end
end