Preparation for TLD management in panel

This commit is contained in:
Pinga 2023-12-09 17:13:26 +02:00
parent 6c7c3960ee
commit f564d3b800
6 changed files with 247 additions and 137 deletions

View file

@ -89,7 +89,11 @@ $app->group('', function ($route) {
$route->get('/overview', FinancialsController::class .':overview')->setName('overview');
$route->get('/registry', SystemController::class .':registry')->setName('registry');
$route->map(['GET', 'POST'], '/registry/tld/create', SystemController::class .':createTld')->setName('createTld');
$route->map(['GET', 'POST'], '/registry/tld/{tld}', SystemController::class . ':viewTld')->setName('viewTld');
$route->get('/registry/tlds', SystemController::class .':manageTlds')->setName('manageTlds');
$route->map(['GET', 'POST'], '/registry/reserved', SystemController::class .':manageReserved')->setName('manageReserved');
$route->get('/support', SupportController::class .':view')->setName('ticketview');
$route->map(['GET', 'POST'], '/support/new', SupportController::class .':newticket')->setName('newticket');
$route->get('/support/docs', SupportController::class .':docs')->setName('docs');