Shiba Prasad Kar
Shiba Prasad Kar
``` import { RolesBuilder } from "nest-access-control"; import { Role } from "@prisma/client"; export const roles: RolesBuilder = new RolesBuilder(); roles .grant(Role.USER).createOwn('users').deleteOwn('users').readAny('users').updateOwn('users') .grant(Role.ADMIN).extend(Role.USER).updateAny('users').deleteAny('users'); ``` ``` @UseRoles({ possession: 'any', action: 'update',...
 **This is the log from chrome from my deployed web app** while in debug the file loads with no issue !!  **This is my file structure**  **This...
### 👟 Reproduction steps 1. Write to USER database and write to username collection The is only one document in the collection. ```dart static Future saveUsername( Databases databases, String username,...
``` return Scaffold( appBar: AppBar( backgroundColor: Colors.transparent, elevation: 0.0, title: Text("WALLET"), ), body: Column( children: [ Expanded(flex: 1, child: Container(color: Colors.green)), Expanded( flex: 2, child: Container( // color: Colors.red, height:...