mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-22 10:46:06 +02:00
Fix casing issue
This commit is contained in:
parent
8c9068d3cc
commit
2fbbb34fb2
4 changed files with 71 additions and 10 deletions
|
@ -126,13 +126,13 @@ class Domain(TimeStampedModel, DomainHelper):
|
|||
|
||||
# The domain object exists in the registry
|
||||
# but nameservers don't exist for it yet
|
||||
DNS_NEEDED = "dns needed"
|
||||
DNS_NEEDED = "dns needed", "Dns needed"
|
||||
|
||||
# Domain has had nameservers set, may or may not be active
|
||||
READY = "ready"
|
||||
|
||||
# Registrar manually changed state to client hold
|
||||
ON_HOLD = "on hold"
|
||||
ON_HOLD = "on hold", "On hold"
|
||||
|
||||
# previously existed but has been deleted from the registry
|
||||
DELETED = "deleted"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue