mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-22 18:56:15 +02:00
Complete Domain State options revisions to tuples
This commit is contained in:
parent
d3b732f735
commit
af1b598699
1 changed files with 3 additions and 3 deletions
|
@ -122,20 +122,20 @@ class Domain(TimeStampedModel, DomainHelper):
|
||||||
"""These capture (some of) the states a domain object can be in."""
|
"""These capture (some of) the states a domain object can be in."""
|
||||||
|
|
||||||
# the state is indeterminate
|
# the state is indeterminate
|
||||||
UNKNOWN = "unknown"
|
UNKNOWN = "unknown", "Unknown"
|
||||||
|
|
||||||
# The domain object exists in the registry
|
# The domain object exists in the registry
|
||||||
# but nameservers don't exist for it yet
|
# but nameservers don't exist for it yet
|
||||||
DNS_NEEDED = "dns needed", "Dns needed"
|
DNS_NEEDED = "dns needed", "Dns needed"
|
||||||
|
|
||||||
# Domain has had nameservers set, may or may not be active
|
# Domain has had nameservers set, may or may not be active
|
||||||
READY = "ready"
|
READY = "ready", "Ready"
|
||||||
|
|
||||||
# Registrar manually changed state to client hold
|
# Registrar manually changed state to client hold
|
||||||
ON_HOLD = "on hold", "On hold"
|
ON_HOLD = "on hold", "On hold"
|
||||||
|
|
||||||
# previously existed but has been deleted from the registry
|
# previously existed but has been deleted from the registry
|
||||||
DELETED = "deleted"
|
DELETED = "deleted", "Deleted"
|
||||||
|
|
||||||
class Cache(property):
|
class Cache(property):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue