You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dojo/forms.py
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1656,7 +1656,6 @@ class Meta:
1656
1656
1657
1657
1658
1658
classFindingTemplateForm(forms.ModelForm):
1659
-
apply_to_findings=forms.BooleanField(required=False, help_text="Apply template to all findings that match this CWE. (Update will overwrite mitigation, impact and references for any active, verified findings.)")
Copy file name to clipboardExpand all lines: dojo/models.py
-12Lines changed: 0 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -475,12 +475,6 @@ class System_Settings(models.Model):
475
475
help_text=_("Enables Benchmarks such as the OWASP ASVS "
476
476
"(Application Security Verification Standard)"))
477
477
478
-
enable_template_match=models.BooleanField(
479
-
default=False,
480
-
blank=False,
481
-
verbose_name=_("Enable Remediation Advice"),
482
-
help_text=_("Enables global remediation advice and matching on CWE and Title. The text will be replaced for mitigation, impact and references on a finding. Useful for providing consistent impact and remediation advice regardless of the scanner."))
template_match=models.BooleanField(default=False, verbose_name=_("Template Match Enabled"), help_text=_("Enables this template for matching remediation advice. Match will be applied to all active, verified findings by CWE."))
3665
-
template_match_title=models.BooleanField(default=False, verbose_name=_("Match Template by Title and CWE"), help_text=_("Matches by title text (contains search) and CWE."))
3666
3654
3667
3655
tags=TagField(blank=True, force_lowercase=True, help_text=_("Add tags that help describe this finding template. Choose from the list or add new tags. Press Enter key to add."))
0 commit comments