Skip to content

Commit

Permalink
✨ add case-insensitive filter
Browse files Browse the repository at this point in the history
  • Loading branch information
itsthejoker committed May 18, 2023
1 parent 9820be1 commit a0d9f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blossom/api/views/submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class SubmissionViewSet(viewsets.ModelViewSet):
"content_url": ["exact", "isnull"],
"redis_id": ["exact", "isnull"],
"removed_from_queue": ["exact"],
"feed": ["exact", "isnull"],
"feed": ["exact", "isnull", "iexact"],
}
ordering_fields = [
"id",
Expand Down

0 comments on commit a0d9f3a

Please sign in to comment.