unsubscribe all users with the same email address

This commit is contained in:
suhussai
2017-01-04 23:33:25 -07:00
parent 62aecda2a7
commit 3a7d9545fb

View File

@ -171,26 +171,26 @@ module.exports = function(app) {
function unsubscribeAll(req, res, next) { function unsubscribeAll(req, res, next) {
req.checkParams('email', 'Must send a valid email').isEmail(); req.checkParams('email', 'Must send a valid email').isEmail();
return User.findOne({ where: { email: req.params.email } }, (err, user) => { var query = { email: req.params.email };
var params = {
sendQuincyEmail: false,
sendMonthlyEmail: false,
sendNotificationEmail: false
};
return User.updateAll(query, params, function(err, info) {
if (err) { return next(err); } if (err) { return next(err); }
if (!user) { if (info.count === 0) {
req.flash('info', { req.flash('info', {
msg: 'Email address not found. ' + msg: 'Email address not found. ' +
'Please update your Email preferences from your profile.' 'Please update your Email preferences from your profile.'
}); });
return res.redirect('/map'); return res.redirect('/map');
} } else {
return user.updateAttributes({
sendQuincyEmail: false,
sendMonthlyEmail: false,
sendNotificationEmail: false
}, (err) => {
if (err) { return next(err); }
req.flash('info', { req.flash('info', {
msg: 'We\'ve successfully updated your Email preferences.' msg: 'We\'ve successfully updated your Email preferences.'
}); });
return res.redirect('/unsubscribed'); return res.redirect('/unsubscribed');
}); }
}); });
} }