Merge branch 'main' into dk/1352-nameservers

This commit is contained in:
David Kennedy 2023-12-29 16:05:18 -05:00
commit 30de641996
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
3 changed files with 7 additions and 3 deletions

View file

@ -733,8 +733,10 @@ class Domain(TimeStampedModel, DomainHelper):
email=contact.email,
voice=contact.voice,
fax=contact.fax,
auth_info=epp.ContactAuthInfo(pw="2fooBAR123fooBaz"),
) # type: ignore
updateContact.disclose = self._disclose_fields(contact=contact) # type: ignore
try:
registry.send(updateContact, cleaned=True)
except RegistryError as e: