Skip to content
Snippets Groups Projects
Commit 0e3e0c8d authored by Jan Pokorný's avatar Jan Pokorný :lifter_tone2:
Browse files

removed requiring pageable body

parent ffe59998
No related branches found
No related tags found
2 merge requests!31M2,!22M2 certificate tests
......@@ -92,7 +92,7 @@ public class CertificateController {
* @return a Result object containing a list of CertificateDto objects and pagination information
*/
@GetMapping("/findAll")
public Page<CertificateSimpleDto> findAllCertificates(@RequestBody Pageable pageable) {
public Page<CertificateSimpleDto> findAllCertificates(Pageable pageable) {
return certificateFacade.findAll(pageable);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment