mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||
|
*/
|
||
|
|
||
|
namespace App\Http\Controllers\VendorPortal;
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use App\Http\ViewComposers\PortalComposer;
|
||
|
use App\Models\RecurringInvoice;
|
||
|
use Auth;
|
||
|
|
||
|
class VendorContactHashLoginController 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)
|
||
|
{
|
||
|
return redirect('/vendors/purchase_orders');
|
||
|
}
|
||
|
|
||
|
public function magicLink(string $magic_link)
|
||
|
{
|
||
|
return redirect($this->setRedirectPath());
|
||
|
}
|
||
|
|
||
|
public function errorPage()
|
||
|
{
|
||
|
return render('generic.error', ['title' => session()->get('title'), 'notification' => session()->get('notification')]);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|