Support deleting a task from a schedule

This commit is contained in:
Dane Everitt
2020-03-18 21:08:32 -07:00
parent 5345a2a3e1
commit 78ed343a34
10 changed files with 172 additions and 8 deletions

View File

@@ -62,6 +62,7 @@ Route::group(['prefix' => '/servers/{server}', 'middleware' => [AuthenticateServ
Route::group(['prefix' => '/schedules'], function () {
Route::get('/', 'Servers\ScheduleController@index');
Route::get('/{schedule}', 'Servers\ScheduleController@view');
Route::delete('/{schedule}/tasks/{task}', 'Servers\ScheduleTaskController@delete');
});
Route::group(['prefix' => '/network'], function () {