You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
can i ask what is the use of this because i run into validation problems when i comment it
const exists = await User.findOne({
email: req.body.email,
});
if (exists)
return next(
new AppError(409, 'fail', 'Email already exists'),
req,
res,
next
);
Beta Was this translation helpful? Give feedback.
All reactions