Update to match new installer processing.

This commit is contained in:
Dane Everitt 2016-01-22 20:31:47 -05:00
parent 4719b20a27
commit be47565c78
4 changed files with 45 additions and 3 deletions

View file

@ -35,6 +35,11 @@ class RemoteRoutes {
'as' => 'remote.download',
'uses' => 'Remote\RemoteController@postDownload'
]);
$router->post('install', [
'as' => 'remote.install',
'uses' => 'Remote\RemoteController@postInstall'
]);
});
}