Skip to content

Commit

Permalink
feat(financial entry): relax validation rules for texts
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTrecy committed Aug 10, 2024
1 parent e6c1494 commit ed6c819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Controllers/FinancialEntryController.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private static function makeValidation(): Validation {
$validation->setRule("$individual_name.remarks", "remarks", [
"permit_empty",
"max_length[500]",
"alpha_numeric_punct"
"string"
]);

return $validation;
Expand Down

0 comments on commit ed6c819

Please sign in to comment.