We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882650f commit 9cebe62Copy full SHA for 9cebe62
django_project/_version.txt
@@ -1 +1 @@
1
-1.42.13
+1.42.14
django_project/geosight/data/api/v1/data_browser/data_browser.py
@@ -61,14 +61,6 @@ def serializer_class(self):
61
return IndicatorValueWithPermissionSerializer
62
return IndicatorValueSerializer
63
64
- def get_queryset(self):
65
- """Return queryset of API."""
66
- query = super().get_queryset()
67
- ids = query.values_list('id', flat=True)
68
- return IndicatorValue.objects.filter(id__in=list(ids)).order_by(
69
- 'indicator_id', '-date', 'geom_id'
70
- )
71
-
72
def get_serializer_context(self):
73
"""For serializer context."""
74
context = super().get_serializer_context()
0 commit comments