getjerry/nest-casl

Let use getUserHook for @UseAbility() guard

Opened this issue · 0 comments

At the moment, only the user from the HTTP request is available in the context of ability check.

const userProxy = new UserProxy(request, getUserFromRequest);

Instead, use the user from the user hook:
req.setUserHook(await userHookFactory(this.moduleRef, getUserHook));