(@Query() query: FindArticleDto)
| 14 | |
| 15 | @Get("list") |
| 16 | list(@Query() query: FindArticleDto) { |
| 17 | return this.articleService.list(query) |
| 18 | } |
| 19 | |
| 20 | @Get("details") |
| 21 | details(@Query("id") id: string) { |
nothing calls this directly
no outgoing calls
no test coverage detected