heylium_app/app/controllers/download_data_files_controller.rb
Nicolas Bally 8e18de4077 initial
2016-08-03 00:22:29 +02:00

15 lines
245 B
Ruby
Executable File

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