Skip to content

Commit 3b9bcd4

Browse files
committed
Remove test domains from valid_domains list
1 parent 4a58cc7 commit 3b9bcd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/registrar/views/domain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ class DomainDNSView(DomainBaseView):
670670
"""DNS Information View."""
671671

672672
template_name = "domain_dns.html"
673-
valid_domains = ["igorville.gov", "domainops.gov", "chance-especially.gov", "coach-whether-allow.gov"]
673+
valid_domains = ["igorville.gov", "domainops.gov"]
674674

675675
def get_context_data(self, **kwargs):
676676
"""Adds custom context."""
@@ -712,7 +712,7 @@ class PrototypeDomainDNSRecordForm(forms.Form):
712712
class PrototypeDomainDNSRecordView(DomainFormBaseView):
713713
template_name = "prototype_domain_dns.html"
714714
form_class = PrototypeDomainDNSRecordForm
715-
valid_domains = ["igorville.gov", "domainops.gov", "dns.gov", "chance-especially.gov", "coach-whether-allow.gov"]
715+
valid_domains = ["igorville.gov", "domainops.gov", "dns.gov"]
716716

717717
def __init__(self):
718718
self.dns_record = None

0 commit comments

Comments
 (0)