remove username blacklist validation from login action

This commit is contained in:
ghost 2024-01-04 16:05:38 +02:00
parent 332f7416f0
commit eec247432c

View File

@ -618,18 +618,6 @@ class UserController extends AbstractController
);
}
// Validate username blacklist
if (in_array(mb_strtolower($username), array_map('mb_strtolower', (array) explode('|', $this->getParameter('app.add.user.name.blacklist')))))
{
return $this->redirectToRoute(
'user_login',
[
'username' => $request->get('username'),
'error' => $translator->trans('Username reserved by node!')
]
);
}
// Validate username exist
if (!$hash = $this->_hash($client, $namespace, $username))
{