mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-26 12:38:36 +02:00
implemented new in domain model dnssec_ds_confirmed and dnssec_key_confirmed to control intial blurb msg on the add pages, cleaned up JS
This commit is contained in:
parent
0725b3c244
commit
faae7693c4
7 changed files with 115 additions and 2 deletions
|
@ -711,6 +711,16 @@ class Domain(TimeStampedModel, DomainHelper):
|
|||
default=False,
|
||||
help_text="Boolean indicating if dnssec is enabled",
|
||||
)
|
||||
|
||||
dnssec_ds_confirmed = models.BooleanField(
|
||||
default=False,
|
||||
help_text="Boolean indicating if DS record adding is confirmed",
|
||||
)
|
||||
|
||||
dnssec_key_confirmed = models.BooleanField(
|
||||
default=False,
|
||||
help_text="Boolean indicating if Key record adding is confirmed",
|
||||
)
|
||||
|
||||
# ForeignKey on UserDomainRole creates a "permissions" member for
|
||||
# all of the user-roles that are in place for this domain
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue