Added ability to export list of domain names, fixed #165

This commit is contained in:
Pinga 2024-09-20 16:11:42 +03:00
parent f497f7ada7
commit 7eff3e6c66
3 changed files with 59 additions and 0 deletions

View file

@ -103,7 +103,9 @@ $app->group('', function ($route) {
$route->get('/epphistory', LogsController::class .':view')->setName('epphistory');
$route->get('/poll', LogsController::class .':poll')->setName('poll');
$route->get('/log', LogsController::class .':log')->setName('log');
$route->get('/reports', ReportsController::class .':view')->setName('reports');
$route->get('/export', ReportsController::class .':exportDomains')->setName('exportDomains');
$route->get('/invoices', FinancialsController::class .':invoices')->setName('invoices');
$route->get('/invoice/{invoice}', FinancialsController::class . ':viewInvoice')->setName('viewInvoice');