handle duplicate email submissions (by silently dropping them)

This commit is contained in:
joates 2014-09-22 23:28:13 +01:00
parent baeab714db
commit b85c284b87

View file

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