Skip to content

Commit

Permalink
Support dns ea inheritance to fix integration test for Host Record (#15)
Browse files Browse the repository at this point in the history
* Added support for extensibleattributedef

* [IMP] Added new parameter for Host Record to support DNS EA Inheritance
  • Loading branch information
JkhatriInfobox authored Oct 2, 2024
1 parent c92533b commit 0061d63
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions flaskapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class NetworkView(object):
ipv4addr = None
ipv6addr = None
configure_for_dns = True
use_dns_ea_inheritance = False
ipv4 = None
ipv6 = None
canonical = None
Expand Down Expand Up @@ -265,6 +266,7 @@ def to_dict(self, fields=[]):
'ipv4addr': self.ipv4addr,
'ipv6addr': self.ipv6addr,
'configure_for_dns': self.configure_for_dns,
'use_dns_ea_inheritance': self.use_dns_ea_inheritance,
'ipv4': self.ipv4,
'ipv6': self.ipv6,
'canonical': self.canonical,
Expand Down

0 comments on commit 0061d63

Please sign in to comment.