mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Smaller notes
This commit is contained in:
		| @@ -160,10 +160,10 @@ class RecurrenceFormRequest extends FormRequest | ||||
|         $rules      = [ | ||||
|             // mandatory info for recurrence.
 | ||||
|             'title'                   => 'required|between:1,255|uniqueObjectForUser:recurrences,title', | ||||
|             'first_date'              => sprintf('required|date|before:%s|after:%s',$before->format('Y-m-d'),$today->format('Y-m-d')), | ||||
|             'first_date'              => sprintf('required|date|before:%s|after:%s', $before->format('Y-m-d'), $today->format('Y-m-d')), | ||||
|             'repetition_type'         => ['required', new ValidRecurrenceRepetitionValue(), new ValidRecurrenceRepetitionType(), 'between:1,20'], | ||||
|             'skip'                    => 'required|numeric|integer|gte:0|lte:31', | ||||
|             'notes'                   => 'between:1,65536|nullable', | ||||
|             'notes'                   => 'min:1|max:32768|nullable', | ||||
|             // optional for recurrence:
 | ||||
|             'recurring_description'   => 'between:0,65000', | ||||
|             'active'                  => 'numeric|between:0,1', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user