Skip to content

Commit

Permalink
refactor(#30) : 공지사항 페이징 처리 기본 10개 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ji-hyeon97 committed May 23, 2024
1 parent b8e1d7f commit e692655
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ResponseEntity<NoticeDto> findById(@PathVariable("id") Long id) {
}

@GetMapping("")
public ResponseEntity<ResponseResult<List<NoticeResponseDto>>> findAll(@PageableDefault(size = 5)Pageable pageable) {
public ResponseEntity<ResponseResult<List<NoticeResponseDto>>> findAll(@PageableDefault(size = 10)Pageable pageable) {
return ResponseEntity.status(OK).body(noticeService.findAll(pageable));
}

Expand Down

0 comments on commit e692655

Please sign in to comment.