Skip to content

Commit

Permalink
Also exclude robots with no long title as these are processing bots (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
erinspace authored and chrisseto committed Jul 10, 2016
1 parent f4ac815 commit ba2f229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/views/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ProviderViewSet(viewsets.ReadOnlyModelViewSet):
serializer_class = ProviderSerializer

def get_queryset(self):
return ShareUser.objects.exclude(robot='')
return ShareUser.objects.exclude(robot='').exclude(long_title='')


class NormalizedDataViewSet(viewsets.ModelViewSet):
Expand Down

0 comments on commit ba2f229

Please sign in to comment.