Skip to content
Snippets Groups Projects
Commit bae40c16 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

complete_user_creation is less aggressive about deleting the pendingCreation...

complete_user_creation is less aggressive about deleting the pendingCreation toeken - this allows a user to reload to try to complete email creation if the database is temporarily down
parent 65da95e2
No related branches found
No related tags found
No related merge requests found
......@@ -58,20 +58,25 @@ exports.process = function(req, res) {
}
function postAuthentication() {
// the time the email verification is performed, we'll clear the pendingCreation
// data on the session.
delete req.session.pendingCreation;
db.haveVerificationSecret(req.body.token, function(err, known) {
if (err) return wsapi.databaseDown(res, err);
if (!known) return res.json({ success: false} );
if (!known) {
// clear the pendingCreation token from the session if we find no such
// token in the database
delete req.session.pendingCreation;
return res.json({ success: false} );
}
db.gotVerificationSecret(req.body.token, function(err, email, uid) {
if (err) {
logger.warn("couldn't complete email verification: " + err);
wsapi.databaseDown(res, err);
} else {
// clear the pendingCreation token from the session once we
// successfully complete user creation
delete req.session.pendingCreation;
// At this point, the user is either on the same browser with a token from
// their email address, OR they've provided their account password. It's
// safe to grant them an authenticated session.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment