1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Http/Controllers/ClientPortal/TempRouteController.php

34 lines
803 B
PHP
Raw Normal View History

2020-11-27 10:14:01 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2020-11-27 10:14:01 +01:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-11-27 10:14:01 +01:00
*/
namespace App\Http\Controllers\ClientPortal;
use Auth;
2023-04-26 03:21:20 +02:00
use App\Http\Controllers\Controller;
2020-11-27 10:14:01 +01:00
use Illuminate\Support\Facades\Cache;
2023-04-26 03:21:20 +02:00
use Illuminate\Support\Facades\Redirect;
2020-11-27 10:14:01 +01:00
class TempRouteController extends Controller
{
/**
* Logs a user into the client portal using their contact_key
2023-04-26 03:21:20 +02:00
* @param string $hash The hash
* @return Redirect
2020-11-27 10:14:01 +01:00
*/
public function index(string $hash)
{
2020-11-27 10:21:18 +01:00
$data = [];
2020-11-27 12:08:42 +01:00
$data['html'] = Cache::get($hash);
2020-11-27 10:21:18 +01:00
return view('pdf.html', $data);
2020-11-27 10:14:01 +01:00
}
}