Massive update on the automated registrar OTE check

This commit is contained in:
Pinga 2024-02-27 09:42:35 +02:00
parent f3b798db38
commit e3e560929f
7 changed files with 300 additions and 111 deletions

View file

@ -93,6 +93,7 @@ $app->group('', function ($route) {
$route->post('/registrar/update', RegistrarsController::class . ':updateRegistrarProcess')->setName('updateRegistrarProcess');
$route->get('/registrar', RegistrarsController::class .':registrar')->setName('registrar');
$route->map(['GET', 'POST'], '/registrar/edit', RegistrarsController::class .':editRegistrar')->setName('editRegistrar');
$route->get('/registrar/check', RegistrarsController::class . ':oteCheck')->setName('oteCheck');
$route->get('/users', UsersController::class .':listUsers')->setName('listUsers');