We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce87783 commit d01ebc7Copy full SHA for d01ebc7
vulnerabilities/views.py
@@ -73,6 +73,8 @@ def request_to_queryset(request):
73
74
return list(
75
models.Package.objects.all()
76
+ # FIXME: This filter is wrong and ignoring most of the fields needed for a
77
+ # proper package lookup: type/namespace/name@version?qualifiers and so on
78
.filter(name__icontains=package_name, type__icontains=package_type)
79
.annotate(
80
vulnerability_count=Count(
0 commit comments