We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3ac6fb commit 9b06f5eCopy full SHA for 9b06f5e
src/test-runs/test-runs.controller.ts
@@ -55,6 +55,14 @@ export class TestRunsController {
55
return this.testRunsService.findMany(buildId);
56
}
57
58
+ @Get(':id')
59
+ @ApiOkResponse({ type: TestRunDto })
60
+ @ApiBearerAuth()
61
+ @UseGuards(JwtAuthGuard)
62
+ getDetails(@Param('id', new ParseUUIDPipe()) id: string): Promise<TestRunDto> {
63
+ return this.testRunsService.findOne(id);
64
+ }
65
+
66
@Post('approve')
67
@ApiQuery({ name: 'merge', required: false })
68
@ApiBearerAuth()
0 commit comments