Lhon

Results 1 issues of Lhon

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 ,...