fix reset password

This commit is contained in:
tcprod 2026-02-10 22:28:17 +01:00
parent 442d3f3e0a
commit 21cce3d38e

View File

@ -67,7 +67,6 @@ class UserService:
return user.user_password == user_password_hash return user.user_password == user_password_hash
def _check_for_disallowed_char(self, name: str) -> Optional[str]: def _check_for_disallowed_char(self, name: str) -> Optional[str]:
for c in name: for c in name:
if c not in self.ALLOWED_USER_NAME_SYMBOLS: if c not in self.ALLOWED_USER_NAME_SYMBOLS: