(@Param('id') id: string, @Req() req: RequestWithUser)
| 63 | @Permissions(PERMISSIONS.project.delete) |
| 64 | @Delete(':id') |
| 65 | remove(@Param('id') id: string, @Req() req: RequestWithUser) { |
| 66 | return this.projectService.remove(id, req.user); |
| 67 | } |
| 68 | } |
nothing calls this directly
no outgoing calls
no test coverage detected