Create an incident updates overview page
This commit is contained in:
@@ -71,10 +71,14 @@ class IncidentRoutes
|
||||
|
||||
$router->get('{incident}/updates', [
|
||||
'as' => 'get:dashboard.incidents.updates',
|
||||
'uses' => 'IncidentController@showIncidentUpdateAction',
|
||||
'uses' => 'IncidentController@showIncidentUpdates',
|
||||
]);
|
||||
$router->post('{incident}/updates', [
|
||||
'as' => 'post:dashboard.incidents.updates',
|
||||
$router->get('{incident}/updates/create', [
|
||||
'as' => 'get:dashboard.incidents.updates.create',
|
||||
'uses' => 'IncidentController@showCreateIncidentUpdateAction',
|
||||
]);
|
||||
$router->post('{incident}/updates/create', [
|
||||
'as' => 'post:dashboard.incidents.updates.create',
|
||||
'uses' => 'IncidentController@createIncidentUpdateAction',
|
||||
]);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user