Add support for modification of server startup variables and command
This commit is contained in:
parent
62313eeac5
commit
1d97b0be98
5 changed files with 199 additions and 6 deletions
|
@ -115,6 +115,12 @@ class AdminRoutes {
|
|||
'uses' => 'Admin\ServersController@postUpdateServerDetails'
|
||||
]);
|
||||
|
||||
// Change Server Details
|
||||
$router->post('/view/{id}/startup', [
|
||||
'as' => 'admin.servers.post.startup',
|
||||
'uses' => 'Admin\ServersController@postUpdateServerStartup'
|
||||
]);
|
||||
|
||||
// Rebuild Server
|
||||
$router->post('/view/{id}/rebuild', [
|
||||
'uses' => 'Admin\ServersController@postUpdateServerToggleBuild'
|
||||
|
|
Reference in a new issue