Skip to content

Commit ab56c80

Browse files
committed
fix some errors
1 parent 543625e commit ab56c80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/users.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const login = (req, res) => {
122122
const token = jwt.sign({ _id: user._id }, JWT_SECRET, {
123123
expiresIn: "7d",
124124
});
125-
res.send({ jwt: token });
125+
res.send({ user, token });
126126
})
127127
.catch((err) => {
128128
console.error(err);

0 commit comments

Comments
 (0)