Skip to content

Commit 9e1a9ec

Browse files
Update verbose name + help text for JIRA password field
1 parent c364210 commit 9e1a9ec

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 5.1.8 on 2025-04-27 06:37
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('dojo', '0227_migrate_tags'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='jira_instance',
15+
name='password',
16+
field=models.CharField(help_text='Password, API Token, or Personal Access Token, see DefectDojo documentation for more information.', max_length=2000, verbose_name='Password/Token'),
17+
),
18+
migrations.AlterField(
19+
model_name='jira_instance',
20+
name='username',
21+
field=models.CharField(help_text='Username or Email Address, see DefectDojo documentation for more information.', max_length=2000, verbose_name='Username/Email'),
22+
),
23+
]

0 commit comments

Comments
 (0)