panier_app/app/controllers/public/file_tunel_sends_controller.rb
Nicolas Bally d744a04b28 initial
2020-10-30 22:26:40 +01: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