scube-server/app/controllers/sounds_controller.rb
2014-04-01 10:48:18 +00:00

7 lines
151 B
Ruby

class SoundsController < ApplicationController
def show
sound = Sound.find params[:id]
send_file sound.path, type: sound.mime_type
end
end