This commit is contained in:
CuriousX 2023-09-08 17:35:44 -06:00
parent 0370dd9f83
commit d6f6433e8e
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F
2 changed files with 7 additions and 4 deletions

View file

@ -29,7 +29,7 @@ __all__ = [
"PublicContact",
"User",
"Website",
"TransitionDomain"
"TransitionDomain",
]
auditlog.register(Contact)

View file

@ -2,8 +2,11 @@ from django.db import models
from .utility.time_stamped_model import TimeStampedModel
class TransitionDomain(TimeStampedModel):
"""Transition Domain model stores information about the state of a domain upon transition between registry providers"""
"""Transition Domain model stores information about the
state of a domain upon transition between registry
providers"""
class StatusChoices(models.TextChoices):
CREATED = "created", "Created"
@ -30,13 +33,13 @@ class TransitionDomain(TimeStampedModel):
)
ignoreServerHold = models.BooleanField(
null=False,
default=False, #--COMMENT: this was not specified in the ticket #921
default=False,
verbose_name="ignore Server Hold",
help_text="specifies whether to ignore server hold",
)
email_sent = models.BooleanField(
null=False,
default=False,
default=False,
verbose_name="email sent",
help_text="indicates whether email was sent",
)