Add toggle install status support
This commit is contained in:
parent
7314e70372
commit
99a67127c9
3 changed files with 28 additions and 0 deletions
|
@ -42,6 +42,10 @@ class AdminRoutes {
|
|||
$router->post('/new/service-variables', [ 'uses' => 'Admin\ServersController@postNewServerServiceVariables' ]);
|
||||
|
||||
});
|
||||
// Change Install Status
|
||||
$router->post('/view/{id}/installed', [
|
||||
'uses' => 'Admin\ServersController@postToggleInstall'
|
||||
]);
|
||||
|
||||
});
|
||||
}
|
||||
|
|
Reference in a new issue