mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 22:54:25 +01:00
18 lines
305 B
PHP
18 lines
305 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Ninja\Intents\WebApp;
|
||
|
|
||
|
use App\Ninja\Intents\BaseIntent;
|
||
|
|
||
|
class FindClientIntent extends BaseIntent
|
||
|
{
|
||
|
public function process()
|
||
|
{
|
||
|
$client = $this->requestClient();
|
||
|
|
||
|
$url = $client ? $client->present()->url : '/clients';
|
||
|
|
||
|
return redirect($url);
|
||
|
}
|
||
|
}
|