Skip to content

Commit

Permalink
Merge pull request #238 from Ilhasoft/issue/220
Browse files Browse the repository at this point in the history
Fix #220
  • Loading branch information
Douglas Paz committed Dec 18, 2018
2 parents 8454f2a + f89ca3f commit 302a0f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bothub/api/v1/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ class RepositoryUpdatesViewSet(
mixins.ListModelMixin,
GenericViewSet):
queryset = RepositoryUpdate.objects.filter(
training_started_at__isnull=False)
training_started_at__isnull=False).order_by('-trained_at')
serializer_class = RepositoryUpdateSerializer
filter_class = RepositoryUpdatesFilter
permission_classes = [
Expand Down

0 comments on commit 302a0f1

Please sign in to comment.