mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-20 03:10:57 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1b8b65582a | ||
|
d25971cb44 | ||
|
89a56e661d | ||
|
3482746d7c | ||
|
d5aeca6222 |
@@ -387,6 +387,7 @@ class ImportAccount
|
|||||||
'iban' => $this->accountIban['value'] ?? null,
|
'iban' => $this->accountIban['value'] ?? null,
|
||||||
'active' => true,
|
'active' => true,
|
||||||
'virtualBalance' => '0',
|
'virtualBalance' => '0',
|
||||||
|
'account_type_id' => null,
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->account = $this->repository->store($data);
|
$this->account = $this->repository->store($data);
|
||||||
|
@@ -57,11 +57,11 @@ class ImportStorage
|
|||||||
/** @var Collection */
|
/** @var Collection */
|
||||||
public $journals;
|
public $journals;
|
||||||
/** @var BillRepositoryInterface */
|
/** @var BillRepositoryInterface */
|
||||||
protected $billRepository; // yes, hard coded
|
protected $billRepository;
|
||||||
/** @var Collection */
|
/** @var Collection */
|
||||||
protected $bills;
|
protected $bills;
|
||||||
/** @var int */
|
/** @var int */
|
||||||
protected $defaultCurrencyId = 1;
|
protected $defaultCurrencyId = 1; // yes, hard coded
|
||||||
/** @var ImportJob */
|
/** @var ImportJob */
|
||||||
protected $job;
|
protected $job;
|
||||||
/** @var ImportJobRepositoryInterface */
|
/** @var ImportJobRepositoryInterface */
|
||||||
|
@@ -113,11 +113,13 @@
|
|||||||
"php artisan firefly:upgrade-database",
|
"php artisan firefly:upgrade-database",
|
||||||
"php artisan firefly:verify",
|
"php artisan firefly:verify",
|
||||||
"php artisan firefly:instructions update",
|
"php artisan firefly:instructions update",
|
||||||
"php artisan optimize"
|
"php artisan optimize",
|
||||||
|
"php artisan passport:install"
|
||||||
],
|
],
|
||||||
"post-install-cmd": [
|
"post-install-cmd": [
|
||||||
"php artisan optimize",
|
"php artisan optimize",
|
||||||
"php artisan firefly:instructions install"
|
"php artisan firefly:instructions install",
|
||||||
|
"php artisan passport:install"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
|
@@ -33,7 +33,7 @@ return [
|
|||||||
'is_demo_site' => false,
|
'is_demo_site' => false,
|
||||||
],
|
],
|
||||||
'encryption' => (is_null(env('USE_ENCRYPTION')) || env('USE_ENCRYPTION') === true),
|
'encryption' => (is_null(env('USE_ENCRYPTION')) || env('USE_ENCRYPTION') === true),
|
||||||
'version' => '4.7.1',
|
'version' => '4.7.1.2',
|
||||||
'api_version' => '0.1',
|
'api_version' => '0.1',
|
||||||
'maxUploadSize' => 15242880,
|
'maxUploadSize' => 15242880,
|
||||||
'allowedMimes' => [
|
'allowedMimes' => [
|
||||||
|
Reference in New Issue
Block a user