adonis-acl icon indicating copy to clipboard operation
adonis-acl copied to clipboard

demo app: https://github.com/enniel/adonis-acl-blog-demo

Results 22 adonis-acl issues
Sort by recently updated
recently updated
newest added

I currently don't have the resources to maintain this project. If someone is willing to put in the time to do it, I'm willing to assign the necessary privileges to...

Hi Enniel, Thats one awesome package you have created. I tried to add in AdonisJs V5, it seems not working, am new to Adonis actually. So is there a plan...

I am trying to use adonis-acl with AdonisJs and i landed with this exception IocLookupException: E_IOC_LOOKUP_FAILED: Cannot resolve "Adonis/Acl/Is" namespace from the IoC Container while setting up adonis-acl`. **start/kernel.ts code**...

![2021-04-03_170015](https://user-images.githubusercontent.com/37638323/113484041-41865b80-949e-11eb-82d1-79fc87d778b1.png)

In my application I have added multiple roles such as administrator and I am trying to limit routes to specific roles as shown in the documentation ```js Route.post('/device/:id/upload', 'DeviceController.upload') .middleware(['auth:jwt',...

We use adonis-ACL. We want to change "Role" and "Permission" table names to be consistent with our naming conventions. Is there any way to set table names as desired?

I am encountering an error when i try to create a role **app.js:** 'adonis-acl/providers/AclProvider' in providers 'adonis-acl/providers/CommandsProvider' in aceProviders Role: 'Adonis/Acl/Role', Permission: 'Adonis/Acl/Permission' in aliases **model User.js:** ``` ... static...

To attach the code "const roleAdmin = new Role() roleAdmin.name = 'Administrator' roleAdmin.slug = 'administrator' roleAdmin.description = 'manage administration privileges' await roleAdmin.save()" i need to do this in a new...

Hi, I have to get the last update role assignment of a user, so I have created `updated_at` timestamp. When I perform a query such as `let users = (await...

Hi, I just created an app that supports multi language by Antl but adonis acl uses it's default messages such as: Access forbidden. You are not allowed to this resource....