Skip to content

Commit

Permalink
Merge pull request #249 from co-cddo/UCD-25_change_order_of_status
Browse files Browse the repository at this point in the history
Reordered the application status
  • Loading branch information
jinnashravan authored Jul 11, 2024
2 parents 6717481 + 1932c22 commit e0ec19b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions request_a_govuk_domain/request/models/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class ApplicationStatus(models.TextChoices):
APPROVED = "approved", _("Approved")
REJECTED = "rejected", _("Rejected")
IN_PROGRESS = "in_progress", _("In Progress")
NEW = "new", _("New")
READY_2I = "ready_2i", _("Ready for 2i")
MORE_INFORMATION = "more_information", _("More Information Required")
MORE_INFORMATION = "more_information", _("More Information")
NEW = "new", _("New")
FAILED_CONFIRMATION_EMAIL = "failed_confirmation_email", _(
"Failed Confirmation Email"
)
Expand Down

0 comments on commit e0ec19b

Please sign in to comment.