minmatarfleet / minmatar.org

Platform for Minmatar Fleet
https://my.minmatar.org/
MIT License
4 stars 12 forks source link

Add pagination to `GET /api/blog/posts` endpoint. #920

Closed beautifulmim closed 4 days ago

beautifulmim commented 5 days ago

Add page_number and page_length optional parameters. When they are not present keep the same behavior of the endpoint. Keep ordering from newer to older.

Suggesting pagination algorithm: offset: (page_number - 1) * length last_element: page_number * length