mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 12:12:18 +00:00
Renamed various fields from their old camel casing to new ones.
This commit is contained in:
@@ -140,9 +140,9 @@ class SetDestinationAccount implements ActionInterface
|
||||
if (null === $account) {
|
||||
$data = [
|
||||
'name' => $this->action->action_value,
|
||||
'accountType' => 'expense',
|
||||
'account_type' => 'expense',
|
||||
'account_type_id' => null,
|
||||
'virtualBalance' => 0,
|
||||
'virtual_balance' => 0,
|
||||
'active' => true,
|
||||
'iban' => null,
|
||||
];
|
||||
|
@@ -142,9 +142,9 @@ class SetSourceAccount implements ActionInterface
|
||||
// create new revenue account with this name:
|
||||
$data = [
|
||||
'name' => $this->action->action_value,
|
||||
'accountType' => 'revenue',
|
||||
'account_type' => 'revenue',
|
||||
'account_type_id' => null,
|
||||
'virtualBalance' => 0,
|
||||
'virtual_balance' => 0,
|
||||
'active' => true,
|
||||
'iban' => null,
|
||||
];
|
||||
|
Reference in New Issue
Block a user