mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-24 19:38:26 +02:00
Added registry details management
This commit is contained in:
parent
00efcf35b3
commit
9e583c4802
3 changed files with 157 additions and 42 deletions
|
@ -88,8 +88,8 @@ $app->group('', function ($route) {
|
|||
$route->map(['GET', 'POST'], '/payment-cancel', FinancialsController::class .':cancel')->setName('cancel');
|
||||
$route->get('/transactions', FinancialsController::class .':transactions')->setName('transactions');
|
||||
$route->get('/overview', FinancialsController::class .':overview')->setName('overview');
|
||||
|
||||
$route->get('/registry', SystemController::class .':registry')->setName('registry');
|
||||
|
||||
$route->map(['GET', 'POST'], '/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 . ':manageTld')->setName('manageTld');
|
||||
$route->get('/registry/tlds', SystemController::class .':listTlds')->setName('listTlds');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue