Skip to content

Commit 6fc6b00

Browse files
committed
GET /reports/{report_id}
1 parent 7c8ea01 commit 6fc6b00

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

backend/src/reports/reports.controller.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ export class ReportsController {
6060
description: 'Report ID',
6161
})
6262
@Get(':id')
63-
async getReport(
64-
@Param('id') id: string,
65-
): Promise<Report> {
63+
async getReport(@Param('id') id: string): Promise<Report> {
6664
return this.reportsService.findOne(id);
6765
}
6866

0 commit comments

Comments
 (0)