Skip to content

Commit 0a72930

Browse files
brammie15root
andauthored
Add exact_title filter to findings API (#14597)
Co-authored-by: root <root@vmi3141690.contaboserver.net>
1 parent 29a79e2 commit 0a72930

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

dojo/filters.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,6 +1643,7 @@ class ApiFindingFilter(DojoFilter):
16431643
steps_to_reproduce = CharFilter(lookup_expr="icontains")
16441644
unique_id_from_tool = CharFilter(lookup_expr="icontains")
16451645
title = CharFilter(lookup_expr="icontains")
1646+
exact_title = CharFilter(field_name="title", lookup_expr="iexact", help_text="Finding title exact match (case-insensitive)")
16461647
product_name = CharFilter(lookup_expr="engagement__product__name__iexact", field_name="test", label=labels.ASSET_FILTERS_NAME_EXACT_LABEL)
16471648
product_name_contains = CharFilter(lookup_expr="engagement__product__name__icontains", field_name="test", label=labels.ASSET_FILTERS_NAME_CONTAINS_LABEL)
16481649
product_lifecycle = CharFilter(method=custom_filter, lookup_expr="engagement__product__lifecycle",

0 commit comments

Comments
 (0)