Add basic listing of server schedules

This commit is contained in:
Dane Everitt
2020-02-08 15:23:08 -08:00
parent f9ec96c70a
commit 32e9fb0346
21 changed files with 508 additions and 79 deletions

View File

@@ -59,6 +59,10 @@ Route::group(['prefix' => '/servers/{server}', 'middleware' => [AuthenticateServ
Route::post('/create-folder', 'Servers\FileController@createFolder')->name('api.client.servers.files.create-folder');
});
Route::group(['prefix' => '/schedules'], function () {
Route::get('/', 'Servers\ScheduleController@index');
});
Route::group(['prefix' => '/network'], function () {
Route::get('/', 'Servers\NetworkController@index')->name('api.client.servers.network');
});