mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-20 08:30:06 +00:00
Fake jobs can be configured and can reach the landing stage.
This commit is contained in:
@@ -116,7 +116,7 @@ class ImportJobRepository implements ImportJobRepositoryInterface
|
||||
*/
|
||||
public function create(string $importProvider): ImportJob
|
||||
{
|
||||
$count = 0;
|
||||
$count = 0;
|
||||
$importProvider = strtolower($importProvider);
|
||||
|
||||
while ($count < 30) {
|
||||
@@ -126,7 +126,7 @@ class ImportJobRepository implements ImportJobRepositoryInterface
|
||||
$importJob = ImportJob::create(
|
||||
[
|
||||
'user_id' => $this->user->id,
|
||||
'source' => $importProvider,
|
||||
'provider' => $importProvider,
|
||||
'file_type' => '',
|
||||
'key' => Str::random(12),
|
||||
'status' => 'new',
|
||||
|
||||
Reference in New Issue
Block a user