mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-02 18:17:33 -05:00
14 lines
204 B
PHP
14 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\BaseIntent;
|
|
|
|
class ListClientIntent extends BaseIntent
|
|
{
|
|
public function process()
|
|
{
|
|
return redirect('/clients');
|
|
}
|
|
}
|