Closed oliverhaagh closed 2 years ago
Nice one! Can we also do this for the XMLController?
Ah yes, good catch, missed that one! I'll add it to the PR
Done!
Seems good to me... they checks build fails for some reason... only happens here.. not sure why... I'll accept anyway
Thx! Yeah, I have also noticed that the build job fails... for some reason though it succeeded on the first commit in this PR, and then failed on the second... could maybe be some kind of caching issue?
The Pageable object that is taken as a parameter to endpoints that support was previously being translated to a JSON object that should be given as query parameter which is not allowed in GET calls. Adding the @ParameterObject annotation tells springdoc that a Pageable object should be translated to paging attributes (page, size and sort) instead of a JSON object.