Delete password from user in login response
This commit is contained in:
parent
aa3d51702f
commit
dd6fa0e63c
@ -30,9 +30,9 @@ router.post('/login', async (req, res) => {
|
||||
|
||||
if (bcrypt.compareSync(password, user.password)) {
|
||||
const token = generateToken(user);
|
||||
|
||||
delete user.password;
|
||||
res.status(200).json({
|
||||
message: `Welcome ${user.username}!`,
|
||||
user,
|
||||
token,
|
||||
});
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user