Code to facilitate #1123

This commit is contained in:
James Cole
2018-03-07 20:21:36 +01:00
parent e2d1de94b7
commit fb5323c283
8 changed files with 255 additions and 0 deletions

View File

@@ -22,6 +22,15 @@
declare(strict_types=1);
Route::group(
['namespace' => 'FireflyIII\Http\Controllers\System',
'as' => 'installer.', 'prefix' => 'install'], function () {
Route::get('', ['uses' => 'InstallController@index', 'as' => 'index']);
Route::get('migrate', ['uses' => 'InstallController@migrate', 'as' => 'migrate']);
}
);
/**
* These routes only work when the user is NOT logged in.
*/