(@Args('projectId') projectId: string)
| 39 | @Query(() => [Project]) |
| 40 | @JWTAuth() |
| 41 | async getUserProjects( |
| 42 | @GetUserIdFromToken() userId: string, |
| 43 | ): Promise<Project[]> { |
| 44 | return this.projectService.getProjectsByUser(userId); |
| 45 | } |
| 46 |
nothing calls this directly
no test coverage detected