Skip to content

Commit 0664e39

Browse files
authored
Merge pull request #43 from newsIntelligent/feature/deploy
Refactor: swagger 코드 통일
2 parents 5468016 + 812d847 commit 0664e39

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/UMC/news/newsIntelligent/domain/news/controller/NewsController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class NewsController {
1818

1919
private final NewsService newsService;
2020

21-
@Operation(summary = "토픽 상세 페이지 - 출처 기사 목록 조회 API by 신윤진", description = "주제 생성에 사용된 출처 기사 목록을 반환합니다.")
21+
@Operation(summary = "토픽 상세 페이지 - 출처 기사 목록 조회", description = "주제 생성에 사용된 출처 기사 목록을 반환하는 API입니다..")
2222
@ApiResponses(value = {
2323
@io.swagger.v3.oas.annotations.responses.ApiResponse(responseCode = "200", description = "토픽 출처 기사 목록 조회 성공")
2424
})

src/main/java/UMC/news/newsIntelligent/domain/topic/controller/TopicController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
@RestController
1717
@RequestMapping("/api/topics")
1818
@RequiredArgsConstructor
19-
@Tag(name = "토픽 컨트롤러", description = "토픽과 관련된 API들을 관리하는 컨트롤러")
19+
@Tag(name = "토픽 관련 API", description = "토픽 조회/상세 조회")
2020
public class TopicController {
2121

2222
private final TopicQueryService topicQueryService;
2323

24-
@Operation(summary = "토픽 조회 API by 서동혁", description = "토픽 조회")
24+
@Operation(summary = "토픽 조회", description = "토픽을 조회하는 API입니다.")
2525
@ApiResponses(value = {
2626
@ApiResponse(responseCode = "200", description = "토픽 조회 성공")
2727
})
@@ -36,7 +36,7 @@ public CustomResponse<TopicResponseDTO.TopicPreviewListResDTO> searchTopics(
3636
return CustomResponse.onSuccess(topicResDTO);
3737
}
3838

39-
@Operation(summary = "토픽 상세 페이지 조회 API by 신윤진", description = "")
39+
@Operation(summary = "토픽 상세 페이지 조회", description = "토픽 상세 페이지를 조회하는 API입니다.")
4040
@ApiResponses(value = {
4141
@ApiResponse(responseCode = "200", description = "토픽 상세 페이지 조회 성공")
4242
})

0 commit comments

Comments
 (0)