Merge pull request #348 from seanmorley15/fix-sorting-by-date

Update `apply_sorting` and `get_queryset` methods in `adventures/view…
This commit is contained in:
Sean Morley
2024-10-21 15:55:30 -04:00
committed by GitHub

View File

@@ -40,7 +40,7 @@ class AdventureViewSet(viewsets.ModelViewSet):
order_direction = self.request.query_params.get('order_direction', 'asc') order_direction = self.request.query_params.get('order_direction', 'asc')
include_collections = self.request.query_params.get('include_collections', 'true') include_collections = self.request.query_params.get('include_collections', 'true')
valid_order_by = ['name', 'type', 'date', 'rating', 'updated_at'] valid_order_by = ['name', 'type', 'start_date', 'rating', 'updated_at']
if order_by not in valid_order_by: if order_by not in valid_order_by:
order_by = 'name' order_by = 'name'