Hola Rogerio,,
When creating a new user Name field has a min. limit of 5 characters. My name is Juan (4), but Joao, Paul, etc have less than 5 chars...any reason for that limit ?
I changed this:
Se debe modificar:
..\config\validation\Usuario.yml
Linea 8
min: 3
cambiar por min: 2
Also:
..\modules\novosga\users-bundle\Form\UsuarioType.php
Linea: 60
Se cambia:
->add('nome', TextType::class, [
'label' => 'Nome',
'constraints' => [
new NotBlank(),
new Length([ 'min' => 5, 'max' => 20 ]),
]
])
FOR:
->add('nome', TextType::class, [
'label' => 'Nome',
'constraints' => [
new NotBlank(),
new Length([ 'min' => 2, 'max' => 20 ]),
]
])
It change the limit but I don't know if that may affect the system.