feathers-auth-extend
Version:
Adds sign up verification, forgotten password reset, passwordless login, refresh token and other capabilities to feathers
14 lines (11 loc) • 325 B
JavaScript
// eslint-disable-next-line no-unused-vars
module.exports = (model, data) => {
//standard search for mysql etc
let userID = data.id;
//switch to mongodb ids
if (model.options.id === '_id') {
const ObjectID = require('mongodb').ObjectID;
userID = new ObjectID(data._id);
}
return userID;
};