Remove unnecessary API calls to daemon

This commit is contained in:
Dane Everitt
2019-12-22 13:45:40 -08:00
parent 59bfc212c9
commit 34ffcdae7a
10 changed files with 10 additions and 312 deletions

View File

@@ -84,7 +84,6 @@ Route::group(['prefix' => '/servers'], function () {
Route::post('/{server}/suspend', 'Servers\ServerManagementController@suspend')->name('api.application.servers.suspend');
Route::post('/{server}/unsuspend', 'Servers\ServerManagementController@unsuspend')->name('api.application.servers.unsuspend');
Route::post('/{server}/reinstall', 'Servers\ServerManagementController@reinstall')->name('api.application.servers.reinstall');
Route::post('/{server}/rebuild', 'Servers\ServerManagementController@rebuild')->name('api.application.servers.rebuild');
Route::delete('/{server}', 'Servers\ServerController@delete');
Route::delete('/{server}/{force?}', 'Servers\ServerController@delete');