Expand install routine.

This commit is contained in:
James Cole
2018-03-10 07:17:05 +01:00
parent 0566d0d198
commit 648a6dca42
6 changed files with 125 additions and 16 deletions

View File

@@ -50,7 +50,7 @@ class Installer
// redirect to UpdateController
Log::warning('There are no Firefly III tables present. Redirect to migrate routine.');
return response()->redirectTo(route('installer.migrate'));
return response()->redirectTo(route('installer.index'));
}
throw new FireflyException(sprintf('Could not access the database: %s', $message));
}
@@ -64,7 +64,7 @@ class Installer
));
// redirect to migrate routine:
return response()->redirectTo(route('installer.migrate'));
return response()->redirectTo(route('installer.index'));
}
return $next($request);
}