Rename consumption to consumption started for consistency

This commit is contained in:
shamoon
2024-01-01 07:57:19 -08:00
parent 9f1dcf9023
commit 8b2d585c0b
4 changed files with 7 additions and 7 deletions

View File

@@ -357,7 +357,7 @@ class Migration(migrations.Migration):
"type",
models.PositiveIntegerField(
choices=[
(1, "Consumption"),
(1, "Consumption Started"),
(2, "Document Added"),
(3, "Document Updated"),
],

View File

@@ -899,7 +899,7 @@ class WorkflowTrigger(models.Model):
FUZZY = MatchingModel.MATCH_FUZZY, _("Fuzzy word")
class WorkflowTriggerType(models.IntegerChoices):
CONSUMPTION = 1, _("Consumption")
CONSUMPTION = 1, _("Consumption Started")
DOCUMENT_ADDED = 2, _("Document Added")
DOCUMENT_UPDATED = 3, _("Document Updated")