(@Body() project: ProjectRequest, @Req() req: RequestWithUser)
| 23 | @Post() |
| 24 | @UsePipes(new JoiValidationPipe(createProjectValidationSchema)) |
| 25 | create(@Body() project: ProjectRequest, @Req() req: RequestWithUser) { |
| 26 | return this.projectService.create(project, req.user); |
| 27 | } |
| 28 | |
| 29 | @UseGuards(PermissionsGuard) |
| 30 | @Permissions(PERMISSIONS.project.read) |
nothing calls this directly
no outgoing calls
no test coverage detected