jfinkels / flask-restless

NO LONGER MAINTAINED - A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models.
https://flask-restless.readthedocs.io
GNU Affero General Public License v3.0
1.02k stars 301 forks source link

URL encodes first, last, prev, and next links. #622

Closed jfinkels closed 7 years ago

jfinkels commented 7 years ago

Previously, Flask-Restless was not URL encoding the first, last, next, and prev pagination links in the response JSON document. This commit corrects that and additionally corrects some imprecise unit tests that were not accounting for URL encoding.

Fixes issue #553.