Skip to content

Commit

Permalink
Refact : 컨트롤러에서 상세 조회 swagger 이름 변경
Browse files Browse the repository at this point in the history
- 조회 -> 상세 조회로 변경
  • Loading branch information
Zamoca42 committed Feb 25, 2024
1 parent a6f5c50 commit 2f4c341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/toeic/toeic.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class ToeicController {
}

@Get('/:id')
@ApiSwagger({ name: '토익 문제 조회' })
@ApiSwagger({ name: '토익 문제 상세 조회' })
async findOne(@Param('id', ParseIntPipe) id: number) {
const result = await this.toeicService.findOne(+id);
return ResponseEntity.OK_WITH(
Expand Down

0 comments on commit 2f4c341

Please sign in to comment.