Skip to content

Commit

Permalink
fix: project description validation (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Aug 21, 2024
1 parent 8b57703 commit 77d88d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Requests/Project/EditRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function rules(): array
'end' => ['date', 'nullable', 'after:tomorrow'],
'counties' => ['array', 'nullable'],
'counties.*' => ['exists:counties,id', 'nullable'],
'description' => ['string', 'nullable', 'max:800'],
'description' => ['string', 'nullable', 'max:1000'],
'scope' => ['string', 'nullable'],
'reason_to_donate' => ['string', 'nullable'],
'beneficiaries' => ['nullable', 'string'],
Expand Down

0 comments on commit 77d88d5

Please sign in to comment.