1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 06:51:10 +03:00

Don't treat pagination parameters as filtering.

This commit is contained in:
Michael DeHaan 2013-04-25 08:01:40 -04:00
parent d6d468633f
commit 0251253f49

View File

@ -32,6 +32,9 @@ class CustomFilterBackend(object):
value = request.GET[key]
if key in [ 'page', 'page_size' ]:
continue
if key == 'order_by':
order_by = value
continue