8 lines
188 B
Ruby
8 lines
188 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
|