nil
Results
2
comments of
nil
any solution? Here is my problem: ``` @JsonController("/project") @Service() export class ProjectController { @Post("/getProject") async getDetail(@CurrentUser() user: User, @BodyParam("project_id") project_id: number) { // to check if currentUser has the access...
I get one solution. You can use `Container.set() ` in a middleware such as `AuthMiddleware.ts`. Then, in the middleware above, you can get `currentUser `with `Container.get()`. It works well !