blog_perso_app/app/controllers/download_data_files_controller.rb
Nicolas Bally 56a0aa9848 initial
2012-06-17 21:11:12 +02:00

15 lines
277 B
Ruby

# -*- encoding : utf-8 -*-
class DownloadDataFilesController < ApplicationController
def index
end
def show
@data_file = DataFile.find(params[:id])
send_file @data_file.file.path, :filename => @data_file.abstract_file_name_slug #, :disposition => "inline"
end
end