Add ServerTransfer relation in Models/Server.php, notify the new daemon about the incoming server transfer

This commit is contained in:
Matthew Penner 2020-04-04 14:10:18 -06:00
parent 86b7b6ecc3
commit 6ba6c34252
6 changed files with 79 additions and 19 deletions

View file

@ -13,3 +13,5 @@ Route::group(['prefix' => '/servers/{uuid}'], function () {
Route::post('/install', 'Servers\ServerInstallController@store');
Route::post('/archive', 'Servers\ServerTransferController@archive');
});