Promotion page is now active

This commit is contained in:
Pinga 2023-12-14 10:47:43 +02:00
parent a7bd8fc5fd
commit d172717f0a
3 changed files with 113 additions and 15 deletions

View file

@ -97,7 +97,8 @@ $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->post('/registry/promotions', SystemController::class . ':managePromo')->setName('managePromo');
$route->get('/support', SupportController::class .':view')->setName('ticketview');
$route->map(['GET', 'POST'], '/support/new', SupportController::class .':newticket')->setName('newticket');
$route->get('/ticket/{ticket}', SupportController::class . ':viewTicket')->setName('viewTicket');