Skip to content

Commit

Permalink
Merge pull request #60 from Move-Log/feat/get-7days-news-list
Browse files Browse the repository at this point in the history
[DOCS] 페이징 관련 명세 수정
  • Loading branch information
EunbeenDev authored Jan 16, 2025
2 parents f9a3d9f + f8fd635 commit 4a61e7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public ResponseEntity<?> getRecentKeywords(
public ResponseEntity<?> getRecentNews(
@Parameter(description = "Access Token을 입력해주세요.", required = true)
@AuthenticationPrincipal UserPrincipal userPrincipal,
@Parameter(description = "뉴스 목록의 페이지 번호를 입력해주세요. **Page는 1부터 시작됩니다!**", required = true)
@Parameter(description = "뉴스 목록의 페이지 번호를 입력해주세요. **Page는 0부터 시작됩니다!**", required = true)
@RequestParam(value = "page", required = false, defaultValue = "0") Integer page
) {
List<RecentNewsRes> response = newsService.getRecentNews(userPrincipal, page);
Expand Down

0 comments on commit 4a61e7b

Please sign in to comment.