scube-server/app/controllers/api/sounds_controller.rb
2015-04-30 08:52:00 +00:00

10 lines
208 B
Ruby

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