Skip to content

Commit

Permalink
refactor(db): re-word helptext for enrollmentflow label
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda committed Sep 30, 2024
1 parent 42da01a commit 884cfb3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions benefits/core/migrations/0029_alter_enrollmentflow_label.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.1 on 2024-09-30 06:09

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("core", "0028_refactor_transitagency_enrollmentflow_relationship"),
]

operations = [
migrations.AlterField(
model_name="enrollmentflow",
name="label",
field=models.TextField(help_text="A human readable label, used as the display text in Admin.", null=True),
),
]
2 changes: 1 addition & 1 deletion benefits/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ class EnrollmentFlow(models.Model):
)
label = models.TextField(
null=True,
help_text="A human readable label, not shown to end-users. Used as the display text in Admin.",
help_text="A human readable label, used as the display text in Admin.",
)
group_id = models.TextField(null=True, help_text="Reference to the TransitProcessor group for user enrollment")
supports_expiration = models.BooleanField(
Expand Down

0 comments on commit 884cfb3

Please sign in to comment.