Skip to content

Commit

Permalink
change order of the list from ant delays
Browse files Browse the repository at this point in the history
  • Loading branch information
svhoy committed Jun 4, 2024
1 parent 30326c2 commit 40115d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/sit_ble_devices/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class AntDelayViewSet(viewsets.ModelViewSet):
"""

queryset = AntDelay.objects.all().order_by("created")
queryset = AntDelay.objects.all().order_by("-created")
serializer_class = AntDelaySerializer
permission_classes = [
permissions.IsAuthenticated,
Expand Down

0 comments on commit 40115d8

Please sign in to comment.