(@UploadedFile() file: Express.Multer.File, @Req() req)
| 25 | @Post('upload') |
| 26 | @UseInterceptors(FileInterceptor('file')) |
| 27 | async uploadFile(@UploadedFile() file: Express.Multer.File, @Req() req) { |
| 28 | return this.fileService.handleLocalFile(file, +req.user.userId); |
| 29 | } |
| 30 | |
| 31 | } |
nothing calls this directly
no test coverage detected