-
- Downloads
fix: restore has_timeslots order criteria for episode endpoint
The has_timeslots order criteria worked until commit 435e72d5 removed it from the default queryset. This was the right choice in general because the annotation is relatively expensive. However, it ignored the use in the ordering filter. To get the best of both worlds: * fast query speed for queries that don’t care about timeslots * filtering/ordering based on timeslots this commit implements conditional ordering filter annotations. refs dashboard#359
Please register or sign in to comment