Skip to content

Commit 73cadc6

Browse files
authored
Merge pull request #14551 from dogboat/drop-system-settings-credentials
Drop System_Settings "credentials" field
1 parent 298bb1b commit 73cadc6

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Generated by Django 5.2.12 on 2026-03-18 19:47
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('dojo', '0261_remove_url_insert_insert_remove_url_update_update_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.RemoveField(
14+
model_name='system_settings',
15+
name='credentials',
16+
),
17+
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0261_remove_url_insert_insert_remove_url_update_update_and_more
1+
0262_remove_system_settings_credentials

dojo/fixtures/defect_dojo_sample_data.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,6 @@
784784
"add_vulnerability_id_to_jira_label": false,
785785
"allow_anonymous_survey_repsonse": false,
786786
"api_expose_error_details": false,
787-
"credentials": "",
788787
"default_group": null,
789788
"default_group_email_pattern": "",
790789
"default_group_role": null,

dojo/fixtures/defect_dojo_sample_data_locations.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,6 @@
790790
"add_vulnerability_id_to_jira_label": false,
791791
"allow_anonymous_survey_repsonse": false,
792792
"api_expose_error_details": false,
793-
"credentials": "",
794793
"default_group": null,
795794
"default_group_email_pattern": "",
796795
"default_group_role": null,

dojo/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,6 @@ class System_Settings(models.Model):
535535
verbose_name=_("Allow Anonymous Survey Responses"),
536536
help_text=_("Enable anyone with a link to the survey to answer a survey"),
537537
)
538-
credentials = models.TextField(max_length=3000, blank=True)
539538
disclaimer_notifications = models.TextField(max_length=3000, default="", blank=True,
540539
verbose_name=_("Custom Disclaimer for Notifications"),
541540
help_text=_("Include this custom disclaimer on all notifications"))

0 commit comments

Comments
 (0)