feature/server-mounts initial commit
This commit is contained in:
parent
5dbcddc862
commit
59a150148a
5 changed files with 176 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue