Added ability to send registrar notifications, fixed #166

Also fixed msg_producer (again)
This commit is contained in:
Pinga 2025-02-12 01:02:47 +02:00
parent 6968bfafa2
commit 5711546f78
5 changed files with 244 additions and 17 deletions

View file

@ -100,6 +100,7 @@ $app->group('', function ($route) {
$route->map(['GET', 'POST'], '/registrar/process', RegistrarsController::class . ':transferRegistrarProcess')->setName('transferRegistrarProcess');
$route->get('/registrar/impersonate/{registrar}', RegistrarsController::class . ':impersonateRegistrar')->setName('impersonateRegistrar');
$route->get('/leave_impersonation', RegistrarsController::class . ':leave_impersonation')->setName('leave_impersonation');
$route->map(['GET', 'POST'], '/registrars/notify', RegistrarsController::class .':notifyRegistrars')->setName('notifyRegistrars');
$route->get('/users', UsersController::class .':listUsers')->setName('listUsers');
$route->map(['GET', 'POST'], '/user/create', UsersController::class . ':createUser')->setName('createUser');