Skip to content

Commit 317e394

Browse files
committed
fix some errors
1 parent 8eebae6 commit 317e394

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, jwt: token });
126126
})
127127
.catch((err) => {
128128
console.error(err);

0 commit comments

Comments
 (0)