mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-15 07:33:04 +01:00
20 lines
362 B
PHP
20 lines
362 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\BaseIntent;
|
|
|
|
class ListCreditIntent extends BaseIntent
|
|
{
|
|
public function process()
|
|
{
|
|
if ($client = $this->requestClient()) {
|
|
$url = $client->present()->url . '#credits';
|
|
} else {
|
|
$url = '/credits';
|
|
}
|
|
|
|
return redirect($url);
|
|
}
|
|
}
|