#426 Increased the number of required characters when setting a new password in Chill

This commit is contained in:
juminet
2025-09-19 07:03:51 +00:00
committed by Julien Fastré
parent ab98f3a102
commit 80a3734171
3 changed files with 9 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ class UserPasswordType extends AbstractType
'invalid_message' => 'The password fields must match',
'constraints' => [
new Length([
'min' => 9,
'min' => 14,
'minMessage' => 'The password must be greater than {{ limit }} characters',
]),
new NotBlank(),