feathers-permissions icon indicating copy to clipboard operation
feathers-permissions copied to clipboard

Simple role and service method permissions for Feathers

Results 31 feathers-permissions issues
Sort by recently updated
recently updated
newest added

### Summary - [ ] Tell us about the problem your pull request is solving. Updated to work with `^5.0.0-pre.16` - [ ] Are there any open issues that are...

If doing a permissions check on a route that may be accessed by a logged out user there is no check for the error flag. https://github.com/feathersjs-ecosystem/feathers-permissions/blob/release/lib/index.js#L33 This causes an issue...

### Summary Addresses issue #123

At present, I suspect that NULL is not a valid value for the permissions field. When that field is set to NULL I get the following error: > Cannot read...

### Steps to reproduce ```js export default { before: { all: [authenticate('jwt')], get: [ // Allow only users with the "products:get" permission checkPermissions({ roles: ['products:get'] }), // The user will...

After integrating feathers-permissions (backed by PostgreSQL), I want to make it possible for UI devs to use the same logic. contrived example: `class="'userInstance.can('item:remove') || 'disabled'"` I'd like to move https://github.com/feathersjs-ecosystem/feathers-permissions/blob/master/lib/index.js#L39-L60...

enhancement