diff --git a/dojo/db_migrations/0198_alter_system_settings_enable_deduplication.py b/dojo/db_migrations/0198_alter_system_settings_enable_deduplication.py new file mode 100644 index 00000000000..d9d477db75f --- /dev/null +++ b/dojo/db_migrations/0198_alter_system_settings_enable_deduplication.py @@ -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'), + ), + ] diff --git a/dojo/models.py b/dojo/models.py index 527d58aac2c..64fc8137167 100755 --- a/dojo/models.py +++ b/dojo/models.py @@ -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."))