Skip to content

Commit

Permalink
s/pageSize/size/ for consistency with Spring pageable
Browse files Browse the repository at this point in the history
  • Loading branch information
ato committed Aug 2, 2023
1 parent f86f26c commit 4c1371b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/bamboo/api/DataApiController.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private void enforceAgwaCrawl(Crawl crawl) throws AccessDeniedException {
@ResponseBody
public ArrayList<WarcData> listWarcsByCrawl(@PathVariable long crawlId,
@RequestParam(value = "page", defaultValue = "1") int page,
@RequestParam(value = "pageSize", defaultValue = "10000") int pageSize,
@RequestParam(value = "size", defaultValue = "10000") int pageSize,
HttpServletRequest request,
UriComponentsBuilder uriBuilder) throws AccessDeniedException, MissingCredentialsException {
enforceAgwaCredentials(request);
Expand Down

0 comments on commit 4c1371b

Please sign in to comment.