When is user.verify called and where? Also, I'd like to setup custom verification types in addition to email. When a user signs up, it doesn't look like user.verify is called because I tried to test a console.log message and it didn't show. Here's how I tried to test it:
...
User.prototype.verify = function(options, fn) {
console.log('inside verify fn');
...