mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-28 09:51:21 -06:00
Fixed a bug where the rules where too tight in transaction journal.
This commit is contained in:
parent
5f48f13890
commit
7752329b94
@ -20,7 +20,7 @@ class TransactionJournal extends Eloquent
|
||||
protected $rules
|
||||
= ['transaction_type_id' => 'required|exists:transaction_types,id',
|
||||
'transaction_currency_id' => 'required|exists:transaction_currencies,id',
|
||||
'description' => 'required|between:1,255',
|
||||
'description' => 'required|between:1,1024',
|
||||
'date' => 'required|date',
|
||||
'completed' => 'required|between:0,1'];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user