Admin message

This server will be unavailable due to maintenance on July 22, 2026 between 19:00 and 22:00 (Central European Time). We are sorry for the inconvenience. During this period, neither Git nor the GitLab web interface will be available, so please make sure you plan accordingly.

3.9. Pokemon request pagination
Update the method answering `GET` requests on the route `api/pokemon` to support pagination. The method must now return collections of pokemon rather than arrays (use `ResourceCollection`). When receiving `pageSize` as a query parameter, the number of pokemon in the collection must be limited. When receiving `pageNumber` as a query parameter, the pokemon returned must be those in the desired page when splitting all pokemon into pages of size `pageSize`.
issue