Allocation tokens can be viewed in the panel now

This commit is contained in:
Pinga 2024-03-06 00:24:15 +02:00
parent 420bd952f8
commit e0f77397d8
6 changed files with 115 additions and 14 deletions

View file

@ -120,6 +120,7 @@ $app->group('', function ($route) {
$route->map(['GET', 'POST'], '/registry/tld/{tld}', SystemController::class . ':manageTld')->setName('manageTld');
$route->get('/registry/tlds', SystemController::class .':listTlds')->setName('listTlds');
$route->map(['GET', 'POST'], '/registry/reserved', SystemController::class .':manageReserved')->setName('manageReserved');
$route->map(['GET', 'POST'], '/registry/tokens', SystemController::class .':manageTokens')->setName('manageTokens');
$route->post('/registry/promotions', SystemController::class . ':managePromo')->setName('managePromo');
$route->post('/registry/phases', SystemController::class . ':managePhases')->setName('managePhases');