Restrict endpoints
module.exports= {
restrict: true,
resources: ['users','dogs']
// or
resources: {
users: true,
dogs: true,
}
}Last updated
Was this helpful?
module.exports= {
restrict: true,
resources: ['users','dogs']
// or
resources: {
users: true,
dogs: true,
}
}Last updated
Was this helpful?
Was this helpful?