clair_app/app/controllers/public/file_tunel_sends_controller.rb
Nicolas Bally c2f8ec2efb initial
2020-10-10 00:28:38 +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