Revert "Add few test bugs to test ai-review workflow"

This reverts commit 89628c255e.
This commit is contained in:
Hamit Şimşek
2025-11-01 13:19:59 +03:00
parent 89628c255e
commit f9ca29a698
3 changed files with 2 additions and 15 deletions

View File

@@ -38,7 +38,7 @@ class User(UserMixin, db.Model):
Security: Uses bcrypt with automatic salt generation
for resistance against rainbow table attacks.
"""
self.password_hash = password
self.password_hash = generate_password_hash(password, method='pbkdf2:sha256')
def check_password(self, password):
"""