You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module.exports = function(app) {
// Initialize our service with any options it requires
app.configure(
authMan({
service: 'users',
notifier,
identifyUserProps: ['userEmail']
})
);
app.use('/authManagement', new Authmanagement(app));
// Get our initialized service so that we can register hooks
const service = app.service('authManagement');
service.hooks(hooks);
};
The text was updated successfully, but these errors were encountered:
Using verifyHooks.addVerification()
with "feathers-authentication-management": "^2.0.1", and "@feathersjs/authentication": "^4.3.0",
i have got : GeneralError: The "size" argument must be of type number. Received type undefined
user hook :
const { authenticate } = require('@feathersjs/authentication').hooks;
const verifyHooks = require('feathers-authentication-management').hooks;
const accountService = require('../authManagement/notifier');
const commonHooks = require('feathers-hooks-common');
const {
hashPassword,
protect
} = require('@feathersjs/authentication-local').hooks;
module.exports = {
before: {
all: [],
find: [authenticate('jwt')],
get: [authenticate('jwt')],
create: [hashPassword('userPassword'), verifyHooks.addVerification()],
update: [
commonHooks.disallow('external'),
hashPassword('userPassword'),
authenticate('jwt')
],
patch: [
commonHooks.iff(
commonHooks.isProvider('external'),
commonHooks.preventChanges(true, [
'userEmail',
'isVerified',
'verifyToken',
'verifyShortToken',
'verifyExpires',
'verifyChanges',
'resetToken',
'resetShortToken',
'resetExpires'
])
),
hashPassword('userPassword'),
authenticate('jwt')
],
remove: [authenticate('jwt')]
},
after: {
all: [
},
error: {
all: [],
find: [],
get: [],
create: [],
update: [],
patch: [],
remove: []
}
};
service :
// Initializes the
authmanagement
service on path/authmanagement
const authMan = require('feathers-authentication-management'); // initialement feathers-authentication-management or authentication-local-management-v4
const { Authmanagement } = require('./authmanagement.class');
const hooks = require('./authmanagement.hooks');
const notifier = require('./notifier');
module.exports = function(app) {
// Initialize our service with any options it requires
app.configure(
authMan({
service: 'users',
notifier,
identifyUserProps: ['userEmail']
})
);
app.use('/authManagement', new Authmanagement(app));
// Get our initialized service so that we can register hooks
const service = app.service('authManagement');
service.hooks(hooks);
};
The text was updated successfully, but these errors were encountered: