Delete password from user in login response

This commit is contained in:
rui hildt 2020-05-09 14:58:22 +02:00
parent aa3d51702f
commit dd6fa0e63c
1 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ const { saltingRounds } = require('../../config/config');
const { generateToken } = require('../../helpers/authJwt');
router.post('/register', async (req, res) => {
const data = req.body;
const data = req.body;
data.password = bcrypt.hashSync(data.password, saltingRounds);
try {
@ -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 {