Add base code to support retrieving allocations as a client
This commit is contained in:
parent
d59c38eb4e
commit
0757d8856b
4 changed files with 109 additions and 0 deletions
|
@ -46,4 +46,8 @@ Route::group(['prefix' => '/servers/{server}', 'middleware' => [AuthenticateServ
|
|||
->where('file', '.*')
|
||||
->name('api.client.servers.files.download');
|
||||
});
|
||||
|
||||
Route::group(['prefix' => '/network'], function () {
|
||||
Route::get('/', 'Servers\NetworkController@index')->name('api.client.servers.network');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue