2020-09-23 03:45:07 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-23 03:45:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-23 03:45:07 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use Auth;
|
|
|
|
|
|
|
|
class ContactHashLoginController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Logs a user into the client portal using their contact_key
|
|
|
|
* @param string $contact_key The contact key
|
|
|
|
* @return Auth|Redirect
|
|
|
|
*/
|
|
|
|
public function login(string $contact_key)
|
|
|
|
{
|
2021-05-14 05:32:37 +02:00
|
|
|
return redirect('/client/invoices');
|
2020-09-23 03:45:07 +02:00
|
|
|
}
|
2021-03-31 02:07:54 +02:00
|
|
|
|
|
|
|
public function magicLink(string $magic_link)
|
|
|
|
{
|
2021-05-14 05:32:37 +02:00
|
|
|
return redirect('/client/invoices');
|
2021-03-31 02:07:54 +02:00
|
|
|
}
|
2021-05-11 03:55:47 +02:00
|
|
|
|
|
|
|
public function errorPage()
|
|
|
|
{
|
|
|
|
return render('generic.error', ['title' => session()->get('title'), 'notification' => session()->get('notification')]);
|
|
|
|
}
|
2020-09-23 03:45:07 +02:00
|
|
|
}
|