added dnssec_enabled to domain; added form to dnssec template to enable or disable; added conditions to sidebar and dnssec template

This commit is contained in:
David Kennedy 2023-10-03 04:44:53 -04:00
parent f848e1fee2
commit 9153f01759
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
7 changed files with 93 additions and 1 deletions

View file

@ -707,6 +707,11 @@ class Domain(TimeStampedModel, DomainHelper):
help_text="Very basic info about the lifecycle of this domain object",
)
dnssec_enabled = models.BooleanField(
default=False,
help_text="Boolean indicating if dnssec is enabled",
)
# ForeignKey on UserDomainRole creates a "permissions" member for
# all of the user-roles that are in place for this domain