files_controller.rb 181 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 class FilesController < ApplicationController def download uploader = Note.find(params[:id]).attachment send_file uploader.file.path, disposition: 'attachment' end end