Merge branch 'develop' into feature/server-transfers-actually

This commit is contained in:
Matthew Penner
2020-04-04 17:09:39 -06:00
committed by GitHub
4 changed files with 105 additions and 0 deletions

View File

@@ -11,7 +11,10 @@ Route::group(['prefix' => '/servers/{uuid}'], function () {
Route::get('/', 'Servers\ServerDetailsController');
Route::get('/install', 'Servers\ServerInstallController@index');
Route::post('/install', 'Servers\ServerInstallController@store');
Route::post('/archive', 'Servers\ServerTransferController@archive');
Route::get('/transfer/failure', 'Servers\ServerTransferController@failure');
Route::get('/transfer/success', 'Servers\ServerTransferController@success');
Route::post('/backup/{backup}', 'Servers\ServerBackupController');
});