Add toggle install status support

This commit is contained in:
Dane Everitt 2016-01-04 16:09:22 -05:00
parent 7314e70372
commit 99a67127c9
3 changed files with 28 additions and 0 deletions

View file

@ -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'
]);
});
}