mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-02 01:47:33 -05:00
14 lines
212 B
PHP
14 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\InvoiceIntent;
|
|
|
|
class ListInvoiceIntent extends InvoiceIntent
|
|
{
|
|
public function process()
|
|
{
|
|
return redirect('/invoices');
|
|
}
|
|
}
|