diff --git a/api/src/backend/api/filters.py b/api/src/backend/api/filters.py index c27cff1d55c..0ace11fe9cf 100644 --- a/api/src/backend/api/filters.py +++ b/api/src/backend/api/filters.py @@ -319,7 +319,7 @@ class FindingFilter(FilterSet): field_name="resources__type", lookup_expr="icontains" ) - # Temporary disabled until we implement tag filtering in the UI + # Temporarily disabled until we implement tag filtering in the UI # resource_tag_key = CharFilter(field_name="resources__tags__key") # resource_tag_key__in = CharInFilter( # field_name="resources__tags__key", lookup_expr="in" diff --git a/api/src/backend/api/tests/test_views.py b/api/src/backend/api/tests/test_views.py index bb51c086fe5..9d43d28a5b9 100644 --- a/api/src/backend/api/tests/test_views.py +++ b/api/src/backend/api/tests/test_views.py @@ -2611,7 +2611,7 @@ def test_findings_metadata_retrieve(self, authenticated_client, findings_fixture expected_services = {"ec2", "s3"} expected_regions = {"eu-west-1", "us-east-1"} - # Temporary disabled until we implement tag filtering in the UI + # Temporarily disabled until we implement tag filtering in the UI # expected_tags = {"key": ["value"], "key2": ["value2"]} expected_resource_types = {"prowler-test"} diff --git a/api/src/backend/api/v1/serializers.py b/api/src/backend/api/v1/serializers.py index 95fa9f1162c..4f17d2d61cd 100644 --- a/api/src/backend/api/v1/serializers.py +++ b/api/src/backend/api/v1/serializers.py @@ -933,7 +933,7 @@ class FindingMetadataSerializer(serializers.Serializer): resource_types = serializers.ListField( child=serializers.CharField(), allow_empty=True ) - # Temporary disabled until we implement tag filtering in the UI + # Temporarily disabled until we implement tag filtering in the UI # tags = serializers.JSONField(help_text="Tags are described as key-value pairs.") class Meta: diff --git a/api/src/backend/api/v1/views.py b/api/src/backend/api/v1/views.py index ab3f3d78e84..3ecb6474fb3 100644 --- a/api/src/backend/api/v1/views.py +++ b/api/src/backend/api/v1/views.py @@ -1419,7 +1419,7 @@ def metadata(self, request): .order_by("type") ) - # Temporary disabled until we implement tag filtering in the UI + # Temporarily disabled until we implement tag filtering in the UI # tag_data = ( # relevant_resources # .filter(tags__key__isnull=False, tags__value__isnull=False)