mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-03 01:23:22 +02:00
More work on contact validation
This commit is contained in:
parent
504bb1b1eb
commit
159228e303
5 changed files with 169 additions and 6 deletions
|
@ -73,6 +73,7 @@ $app->group('', function ($route) {
|
|||
$route->map(['GET', 'POST'], '/contact/create', ContactsController::class . ':createContact')->setName('createContact');
|
||||
$route->get('/contact/view/{contact}', ContactsController::class . ':viewContact')->setName('viewContact');
|
||||
$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->map(['GET', 'POST'], '/contact/delete/{contact}', ContactsController::class . ':deleteContact')->setName('deleteContact');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue