Skip to content

Commit 86c6ed7

Browse files
authored
Jira Push All Issues: Improve help text (#10996)
1 parent 5ca4d15 commit 86c6ed7

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.0.8 on 2024-10-03 23:23
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('dojo', '0215_webhooks_notifications'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='jira_project',
15+
name='push_all_issues',
16+
field=models.BooleanField(blank=True, default=False, help_text='Automatically create JIRA tickets for verified findings. Once linked, the JIRA ticket will continue to sync, regardless of status in DefectDojo.'),
17+
),
18+
]

dojo/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3912,7 +3912,7 @@ class JIRA_Project(models.Model):
39123912
verbose_name=_("Add vulnerability Id as a JIRA label"),
39133913
blank=False)
39143914
push_all_issues = models.BooleanField(default=False, blank=True,
3915-
help_text=_("Automatically maintain parity with JIRA. Always create and update JIRA tickets for findings in this Product."))
3915+
help_text=_("Automatically create JIRA tickets for verified findings. Once linked, the JIRA ticket will continue to sync, regardless of status in DefectDojo."))
39163916
enable_engagement_epic_mapping = models.BooleanField(default=False,
39173917
blank=True)
39183918
epic_issue_type_name = models.CharField(max_length=64, blank=True, default="Epic", help_text=_("The name of the of structure that represents an Epic"))

0 commit comments

Comments
 (0)