File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/UMC/news/newsIntelligent/domain Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 })
Original file line number Diff line number Diff line change 1616@ RestController
1717@ RequestMapping ("/api/topics" )
1818@ RequiredArgsConstructor
19- @ Tag (name = "토픽 컨트롤러 " , description = "토픽과 관련된 API들을 관리하는 컨트롤러 " )
19+ @ Tag (name = "토픽 관련 API " , description = "토픽 조회/상세 조회 " )
2020public 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 })
You can’t perform that action at this time.
0 commit comments