pollen_app/app/controllers/public/file_tunel_sends_controller.rb
Nicolas Bally 120e9803eb initial
2020-04-28 14:51:42 +02:00

17 lines
277 B
Ruby

# -*- encoding : utf-8 -*-
class Public::FileTunelSendsController < ApplicationController
layout "public"
def show
@file_tunel_send = FileTunelSend.where(:token => params[:id]).first
@file_tunel = @file_tunel_send.file_tunel
end
end