Module: RecordMe::Controller
- Defined in:
- lib/record_me/controller.rb
Instance Method Summary collapse
Instance Method Details
#record_me_save(filename = params[:filename]) ⇒ Object
3 4 5 6 7 8 |
# File 'lib/record_me/controller.rb', line 3 def record_me_save(filename = params[:filename]) audio = request.raw_post file_with_path = RecordMe.configuration["destination"] + "/" + filename return save_file(file_with_path, audio) end |