pmcf 6.16.3 → 6.16.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/services/bind.mjs +9 -1
package/package.json
CHANGED
package/src/services/bind.mjs
CHANGED
|
@@ -58,6 +58,14 @@ class zone extends Base {
|
|
|
58
58
|
|
|
59
59
|
records = new Set();
|
|
60
60
|
|
|
61
|
+
get name() {
|
|
62
|
+
return this.id;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
get fullName() {
|
|
66
|
+
return this.id;
|
|
67
|
+
}
|
|
68
|
+
|
|
61
69
|
get domain() {
|
|
62
70
|
return this.id;
|
|
63
71
|
}
|
|
@@ -239,7 +247,7 @@ class bind_group extends Base {
|
|
|
239
247
|
domainNames,
|
|
240
248
|
family
|
|
241
249
|
} of source.networkAddresses()) {
|
|
242
|
-
|
|
250
|
+
// console.log(address);
|
|
243
251
|
}
|
|
244
252
|
}
|
|
245
253
|
}
|