accesscontrol
accesscontrol copied to clipboard
Role and Attribute based Access Control for Node.js
**What's expected:** I'm able to create a role called `paid_member` that extends from `base_member` **What's happening**: I'm getting an error saying the the role of `base_member` doesn't exist. This is...
deno.land/x/accesscontrol
The title says it all. Love the project, would be even better to update the dependency :)
I see in the issues that there was some discussions on version 3, yet no updates were done to this repo in the last 2 years. If this one is...
The repo seems abandoned since the past 3 years. The project is amazing and very useful. People have been avoiding this repo since it's not being maintained.
Hi i'm trying to grant all CRUD permissions to my admin user for every resource I thought using * ``` roles .grant(AppRoles.ADMIN) .createAny("*") .readAny("*") .updateAny("*") .deleteAny("*") ``` would work ,...
I want to do this: ``` let grantsObject = { '*': { '*': { 'create:any': ['!*'], 'read:any': ['!*'], 'update:any': ['!*'], 'delete:any': ['!*'] } } }; //......... add more reading database...
The project looks great but going through the documentation I could not find anything with regard to rules. If you wanted to do the typical following use case, how would...
I meant if I want the amount in h3 tag on dashboard should be visible to admin but not to basic