Route and handle install state updates

This commit is contained in:
Dane Everitt 2020-01-19 13:50:38 -08:00
parent bb9a3714cb
commit dbc7c597d0
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 52 additions and 2 deletions

View file

@ -9,5 +9,6 @@ Route::post('/download-file', 'FileDownloadController@index');
Route::post('/sftp/auth', 'SftpAuthenticationController');
Route::group(['prefix' => '/servers/{uuid}'], function () {
Route::get('/', 'Servers\ServerDetailsController');
Route::get('/install', 'Servers\ServerInstallController');
Route::get('/install', 'Servers\ServerInstallController@index');
Route::post('/install', 'Servers\ServerInstallController@store');
});