mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-05 17:18:04 +02:00
Preparation for TLD management in panel
This commit is contained in:
parent
6c7c3960ee
commit
f564d3b800
6 changed files with 247 additions and 137 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue