7 lines
181 B
Ruby
7 lines
181 B
Ruby
class FilesController < ApplicationController
|
|
def download
|
|
uploader = Note.find(params[:id]).attachment
|
|
send_file uploader.file.path, disposition: 'attachment'
|
|
end
|
|
end
|
|
|