Add base code to support retrieving allocations as a client

This commit is contained in:
Dane Everitt 2019-03-23 17:47:20 -07:00
parent d59c38eb4e
commit 0757d8856b
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 109 additions and 0 deletions

View file

@ -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');
});
});