codescalersinternships / test-tracker

With no user limits, TestTracker allows the entire team to manage their test plans, requirements, test cases and test runs all in one place.
2 stars 1 forks source link

fix: Fix creating new user without hashing the password. #53

Closed Mahmoud-Emad closed 1 month ago

Mahmoud-Emad commented 1 month ago

Description

the user instance was created without hashing the password, so when login by the credentials we see No active account found with the given credentials because the system does compare the actual password string with the hashed password which will return a False

Solution

Hashed the user password before saving it

Changes

Related issues