Work on knexifying password resets

This commit is contained in:
Calvin Montgomery 2017-08-16 23:28:29 -07:00
parent 791a712a68
commit ae7098085c
4 changed files with 203 additions and 16 deletions

View file

@ -484,22 +484,6 @@ module.exports = {
});
},
generatePasswordReset: function (ip, name, email, callback) {
if (typeof callback !== "function") {
return;
}
callback("generatePasswordReset is not implemented", null);
},
recoverPassword: function (hash, callback) {
if (typeof callback !== "function") {
return;
}
callback("recoverPassword is not implemented", null);
},
/**
* Retrieve a list of channels owned by a user
*/