Code refactoring

This commit is contained in:
Sahat Yalkabov
2014-03-06 02:36:55 -05:00
parent f76dbb1679
commit e53949cde1

View File

@@ -36,7 +36,7 @@ exports.postForgot = function(req, res, next) {
async.waterfall([
function(done) {
crypto.randomBytes(20, function(err, buf) {
crypto.randomBytes(16, function(err, buf) {
var token = buf.toString('hex');
done(err, token);
});
@@ -68,7 +68,7 @@ exports.postForgot = function(req, res, next) {
to: user.email,
from: 'hackathon@starter.com',
subject: 'Reset your password on Hackathon Starter',
text: 'You are receiving this because you (or someone else) have requested the reset of the password for your account.\n\n' +
text: 'You are receiving this email because you (or someone else) have requested the reset of the password for your account.\n\n' +
'Please click on the following link, or paste this into your browser to complete the process:\n\n' +
'http://' + req.headers.host + '/reset/' + token + '\n\n' +
'If you did not request this, please ignore this email and your password will remain unchanged.\n'