Allow updating incidents from the API

This commit is contained in:
manavo
2014-11-25 12:40:12 +00:00
parent 325ed033ba
commit a4d3928916
4 changed files with 31 additions and 2 deletions
+2
View File
@@ -11,6 +11,8 @@
Route::group(['protected' => true], function() {
Route::post('components', 'ApiController@postComponents');
Route::post('incidents', 'ApiController@postIncidents');
Route::put('incidents/{id}', 'ApiController@putIncident');
});
});