Skip to content

Commit

Permalink
Copy of metadata endpoint
Browse files Browse the repository at this point in the history
so we can have pageable object split into separate sections, allowing more clarity and allows for a description of each
  • Loading branch information
Hamza Jugon committed Oct 23, 2024
1 parent 9b34775 commit 3d5fd2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public ResponseEntity<Page<HousekeepingPathResponse>> getAllPaths(
@Spec(path = "cleanupTimestamp", params = "deleted_after", spec = GreaterThan.class),
@Spec(path = "creationTimestamp", params = "registered_before", spec = LessThan.class),
@Spec(path = "creationTimestamp", params = "registered_after", spec = GreaterThan.class) }) Specification<HousekeepingPath> spec,
Pageable pageable) {
@ParameterObject Pageable pageable) {
return ResponseEntity.ok(housekeepingEntityService.getAllPaths(spec, pageable));
}

Expand Down

0 comments on commit 3d5fd2a

Please sign in to comment.