Display welcome message and Logout link if the user is already logged in

This commit is contained in:
Sahat Yalkabov
2013-11-18 14:26:25 -05:00
parent 50816337aa
commit 8322b40095
2 changed files with 11 additions and 7 deletions

View File

@ -33,17 +33,15 @@ exports.postSignup = function(req, res) {
password: req.body.password
});
// TODO: add User.schema.path validation
user.save(function(err) {
if (err) {
console.log(err);
if (err.code === 11000) {
return res.send('Duplicate user detected');
} else if (err.name === 'ValidationError') {
return res.send(err.errors);
}
}
req.login(user, function(err) {
req.logIn(user, function(err) {
if (err) throw err;
res.redirect('/');
});