mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-09 00:13:35 -05:00
14 lines
225 B
PHP
14 lines
225 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\BaseIntent;
|
|
|
|
class ListRecurringInvoiceIntent extends BaseIntent
|
|
{
|
|
public function process()
|
|
{
|
|
return redirect('/recurring_invoices');
|
|
}
|
|
}
|