firefly-iii/config/bulk.php

16 lines
370 B
PHP
Raw Normal View History

2021-08-10 11:43:21 -05:00
<?php
2021-08-10 12:31:55 -05:00
declare(strict_types=1);
2021-08-10 11:43:21 -05:00
use FireflyIII\Enums\ClauseType;
return [
ClauseType::TRANSACTION => [
ClauseType::WHERE => [
'source_account_id' => 'required|numeric|belongsToUser:accounts,id',
],
ClauseType::UPDATE => [
'destination_account_id' => 'required|numeric|belongsToUser:accounts,id',
],
],
2021-08-10 12:31:55 -05:00
];