feature/server-mounts initial commit

This commit is contained in:
Matthew Penner 2020-05-20 17:29:03 -06:00
parent 5dbcddc862
commit 59a150148a
5 changed files with 176 additions and 0 deletions

View file

@ -165,6 +165,18 @@ Route::group(['prefix' => 'nodes'], function () {
Route::delete('/view/{node}/allocations', 'NodesController@allocationRemoveMultiple')->name('admin.nodes.view.allocation.removeMultiple');
});
/*
|--------------------------------------------------------------------------
| Mount Controller Routes
|--------------------------------------------------------------------------
|
| Endpoint: /admin/mounts
|
*/
Route::group(['prefix' => 'mounts'], function () {
Route::get('/', 'Mounts\MountController@index')->name('admin.mounts');
});
/*
|--------------------------------------------------------------------------
| Nest Controller Routes