Skip to content

Commit

Permalink
Jira Push All Issues: Improve help text (#10996)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maffooch authored Oct 7, 2024
1 parent 30b10a2 commit e6bb04e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions dojo/db_migrations/0216_alter_jira_project_push_all_issues.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.8 on 2024-10-03 23:23

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('dojo', '0215_webhooks_notifications'),
]

operations = [
migrations.AlterField(
model_name='jira_project',
name='push_all_issues',
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.'),
),
]
2 changes: 1 addition & 1 deletion dojo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3912,7 +3912,7 @@ class JIRA_Project(models.Model):
verbose_name=_("Add vulnerability Id as a JIRA label"),
blank=False)
push_all_issues = models.BooleanField(default=False, blank=True,
help_text=_("Automatically maintain parity with JIRA. Always create and update JIRA tickets for findings in this Product."))
help_text=_("Automatically create JIRA tickets for verified findings. Once linked, the JIRA ticket will continue to sync, regardless of status in DefectDojo."))
enable_engagement_epic_mapping = models.BooleanField(default=False,
blank=True)
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"))
Expand Down

0 comments on commit e6bb04e

Please sign in to comment.