Posts by guiasis • 11 points
1 post
-
1
votes1
answer62
viewsQ: Why is the POST not working on my Mongodb?
Whenever I execute the post command the Inuit returns me an empty User. router.post('/register', async (req,res) => { const { email } = req.body; try { if (await User.findOne({ email })) return…