Fix casing issue

This commit is contained in:
zandercymatics 2023-12-05 14:33:09 -07:00
parent 8c9068d3cc
commit 2fbbb34fb2
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
4 changed files with 71 additions and 10 deletions

View file

@ -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"