Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.1.13 on 2024-01-21 22:20

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('dojo', '0197_parser_merge'),
]

operations = [
migrations.AlterField(
model_name='system_settings',
name='enable_deduplication',
field=models.BooleanField(default=False, help_text='With this setting turned on, Dojo deduplicates findings by comparing endpoints, cwe fields, and titles. If two findings share a URL and have the same CWE or title, Dojo marks the less recent finding as a duplicate. When deduplication is enabled, a list of deduplicated findings is added to the engagement view.', verbose_name='Deduplicate findings'),
),
]
4 changes: 2 additions & 2 deletions dojo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,10 @@ class System_Settings(models.Model):
default=False,
blank=False,
verbose_name=_('Deduplicate findings'),
help_text=_("With this setting turned on, Dojo deduplicates findings by "
help_text=_("With this setting turned on, DefectDojo deduplicates findings by "
"comparing endpoints, cwe fields, and titles. "
"If two findings share a URL and have the same CWE or "
"title, Dojo marks the less recent finding as a duplicate. "
"title, DefectDojo marks the recent finding as a duplicate. "
"When deduplication is enabled, a list of "
"deduplicated findings is added to the engagement view."))
delete_duplicates = models.BooleanField(default=False, blank=False, help_text=_("Requires next setting: maximum number of duplicates to retain."))
Expand Down