From 1dcf3d5b5bcbd5b3b6bc8849e7a92482373c5cae Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Thu, 30 Jan 2020 15:33:30 -0500 Subject: [PATCH] add sortby to list of reserved query parameters (#354) --- pygeoapi/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygeoapi/api.py b/pygeoapi/api.py index 7cf5cdd..c549864 100644 --- a/pygeoapi/api.py +++ b/pygeoapi/api.py @@ -461,7 +461,7 @@ class API(object): properties = [] reserved_fieldnames = ['bbox', 'f', 'limit', 'startindex', - 'resulttype', 'datetime'] + 'resulttype', 'datetime', 'sortby'] formats = FORMATS formats.extend(f.lower() for f in PLUGINS['formatter'].keys())