Add initial task listing for schedules

This commit is contained in:
Dane Everitt
2020-03-17 23:33:53 -07:00
parent b3fb658511
commit 5345a2a3e1
8 changed files with 259 additions and 24 deletions

View File

@@ -61,6 +61,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::group(['prefix' => '/network'], function () {