Shiba Prasad Kar

Results 23 issues of 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',...

![image](https://user-images.githubusercontent.com/24454722/137631886-2d3f52d0-1ba9-4270-9744-6b09f91c6529.png) **This is the log from chrome from my deployed web app** while in debug the file loads with no issue !! ![image](https://user-images.githubusercontent.com/24454722/137632076-b3034f55-a6ac-469b-9862-dbabc3a27752.png) **This is my file structure** ![image](https://user-images.githubusercontent.com/24454722/137632155-7884f301-1260-4a69-8915-105ca25b856a.png) **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,...

bug
database

``` 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:...