mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-03 08:11:49 +02:00
Finished the basic contact validation
This commit is contained in:
parent
19a4dc4048
commit
c43155eb89
6 changed files with 107 additions and 17 deletions
|
@ -75,6 +75,7 @@ $app->group('', function ($route) {
|
|||
$route->get('/contact/update/{contact}', ContactsController::class . ':updateContact')->setName('updateContact');
|
||||
$route->get('/contact/validate/{contact}', ContactsController::class . ':validateContact')->setName('validateContact');
|
||||
$route->post('/contact/update', ContactsController::class . ':updateContactProcess')->setName('updateContactProcess');
|
||||
$route->post('/contact/approve', ContactsController::class . ':approveContact')->setName('approveContact');
|
||||
$route->map(['GET', 'POST'], '/contact/delete/{contact}', ContactsController::class . ':deleteContact')->setName('deleteContact');
|
||||
|
||||
$route->get('/hosts', HostsController::class .':listHosts')->setName('listHosts');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue