Browse Source

handle duplicate email submissions (by silently dropping them)

2015
joates 9 years ago
parent
commit
b85c284b87
  1. 3
      src/email-submit.js

3
src/email-submit.js

@ -57,6 +57,9 @@ module.exports = function(db) {
return res.end()
})
})
} else {
error('already verified: '+ email)
}
}

Loading…
Cancel
Save