nestjs-rbac icon indicating copy to clipboard operation
nestjs-rbac copied to clipboard

Awesome RBAC for NestJs

Results 6 nestjs-rbac issues
Sort by recently updated
recently updated
newest added

Can't import `RBAcModule` in module. ```typescript import { RBAcModule, IStorageRbac } from 'nestjs-rbac'; import { RBAC } from '@app/auth/rbac'; @Module({ imports: [ RBAcModule.forRoot(RBAC), ... ], ... }) export class AppModule...

bug

Hi, @sergey-telpuk! Do your rbac module support of graphql request? I want to add **RBAcPermissions** and **@UseGuards(RBAcGuard)** to graphql resolver. But I suppose that [this code](https://github.com/sergey-telpuk/nestjs-rbac/blob/master/src/guards/rbac.guard.ts#L26) is not working with...

enhancement

Can not import RBAcModule on AppModule RBAcModule.forDynamic(_DynamicStorageService_) Argument of type 'typeof DynamicStorageService' is not assignable to parameter of type 'new () => IDynamicStorageRbac'. Types of construct signatures are incompatible. Type...

I must say I am impressed with your RBAC API design. I was currently using casbin in my boilerplate https://github.com/juicycleff/ultimate-backend-dashboard and I have plans to rewrite the RBAC and trying...

enhancement
help wanted

For instance, if a superadmin is to be granted all existing permissions, this presents a challenge with DynamicStorage. The permissions granted to the superadmin will have to be synced every...

enhancement

Hi! Very cool implementation and quite fast work in a real project! But I have a task - multiroles, when one user can have more than one role. What to...