accesscontrol
accesscontrol copied to clipboard
grant permissions for every resources ?
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 , but it throws an error, "cannot use reserved name", How can I implement this so I don't write down all the resources ?
thanks,
@LhonRafaat Any update on this one?