Login and authentication
module.exports= {
resources: {
users:{
auth:{
local:['email','password']
}
}
},
jwtSecret: 'secret', // by default is "secret", used to sign token
bcryptRounds:1, //used to hash passwords by default is 1
}Last updated
Was this helpful?