You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The command line tool doesn't enforce password requirements:
protected function askUserPassword()
{
do
{
// Ask the user to input the user password
$password = $this->ask('Please enter your user password: ');
// Check if email is valid
if ($password == '')
{
// Return an error message
$this->error('Password is invalid. Please try again.');
}
// Store the password
$this->userData['password'] = $password;
}
while( ! $password);
}
That said, the login screen shouldn't be checking password length either, just the create/edit user section. I'll fix - thanks!
after Installing a fresh snipe-it app with a less than 8 char password, the length validation of password won't allow you to login.
if we could inform the constraint at installation time, we can avoid the situation.
The text was updated successfully, but these errors were encountered: