Skip to content

Commit bd186ec

Browse files
committed
Change url search to ignore case
1 parent f0212bc commit bd186ec

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

defectdojo_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.1.0'
1+
__version__ = '1.1.1'

defectdojo_api/__init__.pyc

0 Bytes
Binary file not shown.

defectdojo_api/defectdojo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ def list_tool_products(self, resource_id=None, url=None, name=None, tool_configu
887887
params['name'] = name
888888

889889
if url:
890-
params['url'] = url
890+
params['url__iregex'] = url
891891

892892
if tool_project_id:
893893
params['tool_project_id__contains'] = tool_project_id

defectdojo_api/defectdojo.pyc

180 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)