We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1d55f commit fc841e8Copy full SHA for fc841e8
1 file changed
dref/views.py
@@ -638,6 +638,12 @@ def list(self, request):
638
if excluded_codes:
639
codes = [c for c in codes if c and c.upper() not in excluded_codes]
640
641
+ codes = self._order_codes(codes, request)
642
+ # NOTE: Ordering and pagination are applied to the appeal codes, not the response objects.
643
+ # As a result, the number of response items may vary. This is expected behavior.
644
+ # This is a temporary limitation. In the future, we plan to apply standard
645
+ # ordering and pagination to the response objects table once an optimized
646
+ # layer is available to support it.
647
codes = self._order_codes(codes, request)
648
codes = self._paginate_codes(codes, request)
649
0 commit comments