basic_app/app/controllers/public/file_tunel_sends_controller.rb
Nicolas Bally fd027c16c1 initial
2020-04-21 21:53:16 +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