netbox-plugin-dns 1.2.7b3__py3-none-any.whl → 1.3b1__py3-none-any.whl
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.
Potentially problematic release.
This version of netbox-plugin-dns might be problematic. Click here for more details.
- netbox_dns/__init__.py +55 -29
- netbox_dns/api/field_serializers.py +25 -0
- netbox_dns/api/serializers_/dnssec_key_template.py +2 -0
- netbox_dns/api/serializers_/dnssec_policy.py +13 -0
- netbox_dns/api/serializers_/record.py +2 -0
- netbox_dns/api/serializers_/record_template.py +2 -0
- netbox_dns/api/serializers_/zone.py +10 -1
- netbox_dns/choices/dnssec_key_template.py +2 -2
- netbox_dns/choices/dnssec_policy.py +2 -2
- netbox_dns/choices/record.py +64 -19
- netbox_dns/choices/utilities.py +4 -26
- netbox_dns/choices/zone.py +96 -1
- netbox_dns/fields/timeperiod.py +6 -12
- netbox_dns/filtersets/dnssec_key_template.py +2 -2
- netbox_dns/filtersets/dnssec_policy.py +6 -6
- netbox_dns/filtersets/zone.py +7 -2
- netbox_dns/filtersets/zone_template.py +2 -2
- netbox_dns/forms/dnssec_key_template.py +3 -2
- netbox_dns/forms/dnssec_policy.py +9 -6
- netbox_dns/forms/nameserver.py +2 -0
- netbox_dns/forms/record_template.py +1 -0
- netbox_dns/forms/zone.py +78 -15
- netbox_dns/forms/zone_template.py +9 -0
- netbox_dns/graphql/enums.py +41 -0
- netbox_dns/graphql/filter_lookups.py +13 -0
- netbox_dns/graphql/filters/__init__.py +12 -0
- netbox_dns/graphql/filters/dnssec_key_template.py +63 -0
- netbox_dns/graphql/filters/dnssec_policy.py +123 -0
- netbox_dns/graphql/filters/nameserver.py +32 -0
- netbox_dns/graphql/filters/record.py +89 -0
- netbox_dns/graphql/filters/record_template.py +55 -0
- netbox_dns/graphql/filters/registrar.py +30 -0
- netbox_dns/graphql/filters/registration_contact.py +27 -0
- netbox_dns/graphql/filters/view.py +28 -0
- netbox_dns/graphql/filters/zone.py +146 -0
- netbox_dns/graphql/filters/zone_template.py +97 -0
- netbox_dns/locale/de/LC_MESSAGES/django.mo +0 -0
- netbox_dns/locale/fr/LC_MESSAGES/django.mo +0 -0
- netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py +23 -0
- netbox_dns/models/dnssec_key_template.py +0 -5
- netbox_dns/models/dnssec_policy.py +0 -5
- netbox_dns/models/nameserver.py +0 -5
- netbox_dns/models/record.py +4 -6
- netbox_dns/models/record_template.py +0 -5
- netbox_dns/models/registrar.py +0 -5
- netbox_dns/models/registration_contact.py +0 -5
- netbox_dns/models/view.py +0 -5
- netbox_dns/models/zone.py +44 -7
- netbox_dns/models/zone_template.py +1 -6
- netbox_dns/tables/zone.py +6 -1
- netbox_dns/template_content.py +2 -1
- netbox_dns/templates/netbox_dns/zone/registration.html +19 -0
- netbox_dns/urls.py +7 -0
- netbox_dns/utilities/conversions.py +13 -0
- netbox_dns/validators/dns_value.py +3 -0
- netbox_dns/views/dnssec_key_template.py +0 -9
- netbox_dns/views/dnssec_policy.py +0 -9
- netbox_dns/views/nameserver.py +0 -9
- netbox_dns/views/record.py +0 -9
- netbox_dns/views/record_template.py +0 -3
- netbox_dns/views/registrar.py +0 -3
- netbox_dns/views/registration_contact.py +0 -3
- netbox_dns/views/view.py +0 -9
- netbox_dns/views/zone.py +11 -11
- netbox_dns/views/zone_template.py +0 -4
- {netbox_plugin_dns-1.2.7b3.dist-info → netbox_plugin_dns-1.3b1.dist-info}/METADATA +5 -3
- {netbox_plugin_dns-1.2.7b3.dist-info → netbox_plugin_dns-1.3b1.dist-info}/RECORD +70 -56
- {netbox_plugin_dns-1.2.7b3.dist-info → netbox_plugin_dns-1.3b1.dist-info}/WHEEL +1 -1
- netbox_dns/graphql/filters.py +0 -88
- {netbox_plugin_dns-1.2.7b3.dist-info → netbox_plugin_dns-1.3b1.dist-info/licenses}/LICENSE +0 -0
- {netbox_plugin_dns-1.2.7b3.dist-info → netbox_plugin_dns-1.3b1.dist-info}/top_level.txt +0 -0
netbox_dns/views/zone.py
CHANGED
|
@@ -4,7 +4,6 @@ from django.utils.translation import gettext_lazy as _
|
|
|
4
4
|
|
|
5
5
|
from netbox.views import generic
|
|
6
6
|
from utilities.views import ViewTab, register_model_view
|
|
7
|
-
from tenancy.views import ObjectContactsView
|
|
8
7
|
|
|
9
8
|
from netbox_dns.filtersets import ZoneFilterSet, RecordFilterSet
|
|
10
9
|
from netbox_dns.forms import (
|
|
@@ -72,13 +71,11 @@ class ZoneView(generic.ObjectView):
|
|
|
72
71
|
class ZoneEditView(generic.ObjectEditView):
|
|
73
72
|
queryset = Zone.objects.prefetch_related("view", "tags", "nameservers", "soa_mname")
|
|
74
73
|
form = ZoneForm
|
|
75
|
-
default_return_url = "plugins:netbox_dns:zone_list"
|
|
76
74
|
|
|
77
75
|
|
|
78
76
|
@register_model_view(Zone, "delete")
|
|
79
77
|
class ZoneDeleteView(generic.ObjectDeleteView):
|
|
80
78
|
queryset = Zone.objects.all()
|
|
81
|
-
default_return_url = "plugins:netbox_dns:zone_list"
|
|
82
79
|
|
|
83
80
|
|
|
84
81
|
@register_model_view(Zone, "bulk_import", detail=False)
|
|
@@ -86,7 +83,6 @@ class ZoneBulkImportView(generic.BulkImportView):
|
|
|
86
83
|
queryset = Zone.objects.prefetch_related("view", "tags", "nameservers", "soa_mname")
|
|
87
84
|
model_form = ZoneImportForm
|
|
88
85
|
table = ZoneTable
|
|
89
|
-
default_return_url = "plugins:netbox_dns:zone_list"
|
|
90
86
|
|
|
91
87
|
|
|
92
88
|
@register_model_view(Zone, "bulk_edit", path="edit", detail=False)
|
|
@@ -95,7 +91,6 @@ class ZoneBulkEditView(generic.BulkEditView):
|
|
|
95
91
|
filterset = ZoneFilterSet
|
|
96
92
|
table = ZoneTable
|
|
97
93
|
form = ZoneBulkEditForm
|
|
98
|
-
default_return_url = "plugins:netbox_dns:zone_list"
|
|
99
94
|
|
|
100
95
|
|
|
101
96
|
@register_model_view(Zone, "bulk_delete", path="delete", detail=False)
|
|
@@ -119,9 +114,19 @@ class ZoneRegistrationView(generic.ObjectView):
|
|
|
119
114
|
template_name = "netbox_dns/zone/registration.html"
|
|
120
115
|
|
|
121
116
|
tab = RegistrationViewTab(
|
|
122
|
-
label="Registration",
|
|
117
|
+
label=_("Registration"),
|
|
123
118
|
)
|
|
124
119
|
|
|
120
|
+
def get_extra_context(self, request, instance):
|
|
121
|
+
expiration_warning, expiration_error = instance.check_expiration()
|
|
122
|
+
|
|
123
|
+
context = {
|
|
124
|
+
"expiration_warning": expiration_warning,
|
|
125
|
+
"expiration_error": expiration_error,
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
return context
|
|
129
|
+
|
|
125
130
|
|
|
126
131
|
@register_model_view(Zone, "records")
|
|
127
132
|
class ZoneRecordListView(generic.ObjectChildrenView):
|
|
@@ -237,8 +242,3 @@ class ZoneChildZoneListView(generic.ObjectChildrenView):
|
|
|
237
242
|
|
|
238
243
|
def get_children(self, request, parent):
|
|
239
244
|
return parent.child_zones
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
@register_model_view(Zone, "contacts")
|
|
243
|
-
class ZoneContactsView(ObjectContactsView):
|
|
244
|
-
queryset = Zone.objects.all()
|
|
@@ -51,13 +51,11 @@ class ZoneTemplateView(generic.ObjectView):
|
|
|
51
51
|
class ZoneTemplateEditView(generic.ObjectEditView):
|
|
52
52
|
queryset = ZoneTemplate.objects.all()
|
|
53
53
|
form = ZoneTemplateForm
|
|
54
|
-
default_return_url = "plugins:netbox_dns:zonetemplate_list"
|
|
55
54
|
|
|
56
55
|
|
|
57
56
|
@register_model_view(ZoneTemplate, "delete")
|
|
58
57
|
class ZoneTemplateDeleteView(generic.ObjectDeleteView):
|
|
59
58
|
queryset = ZoneTemplate.objects.all()
|
|
60
|
-
default_return_url = "plugins:netbox_dns:zonetemplate_list"
|
|
61
59
|
|
|
62
60
|
|
|
63
61
|
@register_model_view(ZoneTemplate, "bulk_import", detail=False)
|
|
@@ -65,7 +63,6 @@ class ZoneTemplateBulkImportView(generic.BulkImportView):
|
|
|
65
63
|
queryset = ZoneTemplate.objects.all()
|
|
66
64
|
model_form = ZoneTemplateImportForm
|
|
67
65
|
table = ZoneTemplateTable
|
|
68
|
-
default_return_url = "plugins:netbox_dns:zonetemplate_list"
|
|
69
66
|
|
|
70
67
|
|
|
71
68
|
@register_model_view(ZoneTemplate, "bulk_edit", path="edit", detail=False)
|
|
@@ -74,7 +71,6 @@ class ZoneTemplateBulkEditView(generic.BulkEditView):
|
|
|
74
71
|
filterset = ZoneTemplateFilterSet
|
|
75
72
|
table = ZoneTemplateTable
|
|
76
73
|
form = ZoneTemplateBulkEditForm
|
|
77
|
-
default_return_url = "plugins:netbox_dns:zonetemplate_list"
|
|
78
74
|
|
|
79
75
|
|
|
80
76
|
@register_model_view(ZoneTemplate, "bulk_delete", path="delete", detail=False)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: netbox-plugin-dns
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3b1
|
|
4
4
|
Summary: NetBox DNS is a NetBox plugin for managing DNS data.
|
|
5
5
|
Author-email: Peter Eckel <pete@netbox-dns.org>
|
|
6
6
|
Project-URL: Homepage, https://github.com/peteeckel/netbox-plugin-dns
|
|
@@ -13,6 +13,7 @@ Requires-Python: >=3.10
|
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: dnspython
|
|
16
|
+
Dynamic: license-file
|
|
16
17
|
|
|
17
18
|
# NetBox DNS
|
|
18
19
|
The NetBox DNS plugin enables NetBox to manage operational DNS data such as name servers, zones, records and views, as well as registration data for domains. It can automate tasks like creating PTR records, generating zone serial numbers, NS and SOA records, as well as validate names and values values for resource records to ensure zone data is consistent, up-to-date and compliant with to the relevant RFCs.
|
|
@@ -66,7 +67,7 @@ For integration with a large number of DNS server implementations integration to
|
|
|
66
67
|
|
|
67
68
|
## Requirements
|
|
68
69
|
|
|
69
|
-
* NetBox 4.
|
|
70
|
+
* NetBox 4.3.0 or higher
|
|
70
71
|
* Python 3.10 or higher
|
|
71
72
|
|
|
72
73
|
## Compatibility with NetBox Versions
|
|
@@ -79,6 +80,7 @@ NetBox Version | NetBox DNS Version | Comment
|
|
|
79
80
|
4.0 - 4.1 | 1.0 | Supports legacy IPAM Coupling
|
|
80
81
|
4.0 - 4.1 | 1.1 | Supports IPAM DNSsync
|
|
81
82
|
4.2 | 1.2 |
|
|
83
|
+
4.3 | 1.3 |
|
|
82
84
|
|
|
83
85
|
## Installation & Configuration
|
|
84
86
|
|
|
@@ -1,66 +1,79 @@
|
|
|
1
|
-
netbox_dns/__init__.py,sha256=
|
|
1
|
+
netbox_dns/__init__.py,sha256=79aYRwH-HVA0tz6Q_r3dGW8ENOLY1eFtI-oDYeDAGp8,4858
|
|
2
2
|
netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
|
|
3
3
|
netbox_dns/navigation.py,sha256=u90MwWBySg1Z9yfZEdvUctYWEkab5z1Y3019J7U_-3g,7741
|
|
4
|
-
netbox_dns/template_content.py,sha256=
|
|
5
|
-
netbox_dns/urls.py,sha256=
|
|
4
|
+
netbox_dns/template_content.py,sha256=irgHJe91TnmmL9K1Xnv07uGmOeJMn9zTrIKtJev88XI,4283
|
|
5
|
+
netbox_dns/urls.py,sha256=wrse8l5scD-jz_O7WY0YXRlYPzpkL-0-kyAd-wCPtbQ,2596
|
|
6
|
+
netbox_dns/api/field_serializers.py,sha256=nVZ6d69DWagONDwbYCP2j3cmL-x9lryitF1wThEJxyI,725
|
|
6
7
|
netbox_dns/api/nested_serializers.py,sha256=zg6FaSeWQdVL2fTUIsKPv4gC60gyJuLEiqbrAC0wRQc,3690
|
|
7
8
|
netbox_dns/api/serializers.py,sha256=OHrpfJkBn6D1y6b3nIxBEFyE50U5p-Aqv4lBojMEFgk,474
|
|
8
9
|
netbox_dns/api/urls.py,sha256=-kQaei47yZeGbDpQ9RaFaFlFb682ThuPA5h321_2cgM,1000
|
|
9
10
|
netbox_dns/api/views.py,sha256=w71SRyZue5zPD1C64TIr496nYFA_ARjHTlpSVFTZ76o,4522
|
|
10
11
|
netbox_dns/api/serializers_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
netbox_dns/api/serializers_/dnssec_key_template.py,sha256=
|
|
12
|
-
netbox_dns/api/serializers_/dnssec_policy.py,sha256=
|
|
12
|
+
netbox_dns/api/serializers_/dnssec_key_template.py,sha256=QQUvbDwvYP05d_XB7Tcqi9XSR2Zq_ddq0wTBllo3LE0,1585
|
|
13
|
+
netbox_dns/api/serializers_/dnssec_policy.py,sha256=FCsmeJrBGaS3GC7_io3uJLZ2RYuoLvdfRkzSSy6gO6U,3917
|
|
13
14
|
netbox_dns/api/serializers_/nameserver.py,sha256=DMkUaLNDt3UtpAD6JDHfo1NMngHWRqHh2-xQeOPlfFM,1171
|
|
14
15
|
netbox_dns/api/serializers_/prefix.py,sha256=kZ1DjDly6VFZamXSxGa57YC6MfZZcI5S7jmGBkVB2_I,551
|
|
15
|
-
netbox_dns/api/serializers_/record.py,sha256=
|
|
16
|
-
netbox_dns/api/serializers_/record_template.py,sha256=
|
|
16
|
+
netbox_dns/api/serializers_/record.py,sha256=U3N92qHITIUAN6vXn1cSusstGKlwsWJiqOU1uaSUU9I,2515
|
|
17
|
+
netbox_dns/api/serializers_/record_template.py,sha256=tvfSlG31X4qn-FjgJespyfkGnb4874EjUjbCFl_z6Ng,1626
|
|
17
18
|
netbox_dns/api/serializers_/registrar.py,sha256=xLIaeBJ5ckV1Jf-uyCTFcvsLlsRMlpDtIg6q79vXZic,842
|
|
18
19
|
netbox_dns/api/serializers_/registration_contact.py,sha256=3IGWW5xB9XEBGApCGZCZIxpCmy1Y5jQUbA4GzmtaCik,1024
|
|
19
20
|
netbox_dns/api/serializers_/view.py,sha256=nnWeQugoqMdn-NGGC7ykbVPwmBrcBma_ZKwdDxUgJ24,1809
|
|
20
|
-
netbox_dns/api/serializers_/zone.py,sha256=
|
|
21
|
+
netbox_dns/api/serializers_/zone.py,sha256=MJrCIhv8j24YnVx43EBe3TkaZoij7C9MitbDuwjOaJY,6205
|
|
21
22
|
netbox_dns/api/serializers_/zone_template.py,sha256=gYlP6wBSVoTZ-DVxJHzGz2fyLdcyibTYR1O9czEKl_k,4374
|
|
22
23
|
netbox_dns/choices/__init__.py,sha256=K3JfawICeoUny8O_Dqexr7DOxwyg3QqijZ4DO6j5yP8,106
|
|
23
|
-
netbox_dns/choices/dnssec_key_template.py,sha256=
|
|
24
|
-
netbox_dns/choices/dnssec_policy.py,sha256=
|
|
25
|
-
netbox_dns/choices/record.py,sha256=
|
|
26
|
-
netbox_dns/choices/utilities.py,sha256=
|
|
27
|
-
netbox_dns/choices/zone.py,sha256=
|
|
24
|
+
netbox_dns/choices/dnssec_key_template.py,sha256=khU1gJF1GlBfk1YGCkm56LPvr7SLXEwqaB-SdD-8Zi0,1425
|
|
25
|
+
netbox_dns/choices/dnssec_policy.py,sha256=1EH1VoLbewiTZmnACpxq6GN0UJDVA1L6cxs-Jf6OagI,839
|
|
26
|
+
netbox_dns/choices/record.py,sha256=GYwpmw3OXTiVqxfTprJTR5WT3JJU3o4UvXkcUDvqec0,2556
|
|
27
|
+
netbox_dns/choices/utilities.py,sha256=osvDMxOZnvxx9Jc7zKjkMGNFGxtnhM49q71Q-h61lLA,123
|
|
28
|
+
netbox_dns/choices/zone.py,sha256=KvyNL_TR_2FXCoH6usrXTRJYRzZ9W1PiDvunutAUYhY,4294
|
|
28
29
|
netbox_dns/fields/__init__.py,sha256=yUVrNQ7BvoeVRGoiRFmrZxXsp1LIwHLRLl0_5mBIyzk,143
|
|
29
30
|
netbox_dns/fields/address.py,sha256=qNLHmpwwJ3TevljG1QsUr_f2h6NrPsK6wr-R-Ti8eZI,1262
|
|
30
31
|
netbox_dns/fields/choice_array.py,sha256=qECgwzJ9PVGIbpqC_JVzuSUsV7C3FG03ibv1EUrvZr4,850
|
|
31
32
|
netbox_dns/fields/ipam.py,sha256=wla-kBm77BpD0LNQhgRZS1RYbVois7WDqPpyQkUT02k,481
|
|
32
33
|
netbox_dns/fields/network.py,sha256=a5nTzjscRufxgMjVsf5juszSYuTujU50pQ9P7q4qMVs,3740
|
|
33
34
|
netbox_dns/fields/rfc2317.py,sha256=y72PZKlXZ8_6P4eeWZ8IF3gqOMjPxW48gk3AB81XboE,2642
|
|
34
|
-
netbox_dns/fields/timeperiod.py,sha256=
|
|
35
|
+
netbox_dns/fields/timeperiod.py,sha256=InK3FVc8gHNQjx101a7HsGfrHxvoG1y6drYwuRjRSIE,941
|
|
35
36
|
netbox_dns/filtersets/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
|
|
36
|
-
netbox_dns/filtersets/dnssec_key_template.py,sha256=
|
|
37
|
-
netbox_dns/filtersets/dnssec_policy.py,sha256=
|
|
37
|
+
netbox_dns/filtersets/dnssec_key_template.py,sha256=qu1c2MzBKEflcU-QkWrGGf6aU8iYDgfeKPCcxxfdRkY,1565
|
|
38
|
+
netbox_dns/filtersets/dnssec_policy.py,sha256=WwNX_D0xbufDfjOLV4od-yzJppl7A9GVKF_unqXTLVg,3069
|
|
38
39
|
netbox_dns/filtersets/nameserver.py,sha256=7hk9Wh4v4-IHP44rQC4nhdvpYbDYNYYf-XZp6Yo72xE,1203
|
|
39
40
|
netbox_dns/filtersets/record.py,sha256=Ao2666F6z435TXD_hV2dgItI0sWXlS-jyQ1TQZEL8Yc,3913
|
|
40
41
|
netbox_dns/filtersets/record_template.py,sha256=wir5s2QWfDnw0M1wWnzJs9im5ok4l5cTbWPMBSM8aEg,1604
|
|
41
42
|
netbox_dns/filtersets/registrar.py,sha256=Wh_l-IXRHnJhW7Pyokp3czQZISDKzXnWeSQKp512Drc,977
|
|
42
43
|
netbox_dns/filtersets/registration_contact.py,sha256=903sOcHPRCI0dVzqn1i0pn5VPr_4YpHPh5QE2-akR-Y,1139
|
|
43
44
|
netbox_dns/filtersets/view.py,sha256=IlQz3k2J_N6eSbT9op0KOu3sKLrn-HTsJCcrIqoYgyY,1047
|
|
44
|
-
netbox_dns/filtersets/zone.py,sha256=
|
|
45
|
-
netbox_dns/filtersets/zone_template.py,sha256=
|
|
45
|
+
netbox_dns/filtersets/zone.py,sha256=ih1Jy1ocGyToP91QDZo6eaxl-2o-Qkgc5GDBHDtrxLA,7049
|
|
46
|
+
netbox_dns/filtersets/zone_template.py,sha256=7pmS7gd1JdsUgu7ICrq5d5gTuIsxMFSejEKZ2VLwwn8,4737
|
|
46
47
|
netbox_dns/forms/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
47
|
-
netbox_dns/forms/dnssec_key_template.py,sha256=
|
|
48
|
-
netbox_dns/forms/dnssec_policy.py,sha256=
|
|
49
|
-
netbox_dns/forms/nameserver.py,sha256=
|
|
48
|
+
netbox_dns/forms/dnssec_key_template.py,sha256=BChWsbShkm72tnZGh5ClStN6SG-XPMAeMeu7mQzoCDk,5249
|
|
49
|
+
netbox_dns/forms/dnssec_policy.py,sha256=KvuC85OfQjvsHLi-W8brjjgH6_Mv2fy1Q_yzv1kepsY,17041
|
|
50
|
+
netbox_dns/forms/nameserver.py,sha256=v0nvG4MmpbYypde5KG5TkoXYkwibMhmqi4I8ugNbDXc,3459
|
|
50
51
|
netbox_dns/forms/record.py,sha256=wkl3YpbKfq0bH6U8atNYrYwrV-kNPRqG1PRQG3X1eHA,8389
|
|
51
|
-
netbox_dns/forms/record_template.py,sha256=
|
|
52
|
+
netbox_dns/forms/record_template.py,sha256=2wNS0LvxX6Zv9uELWmJyL-hIzaVTItNFHv4xDI3qwAk,6505
|
|
52
53
|
netbox_dns/forms/registrar.py,sha256=GaRH3w5zlhrpwy_U0pxlrl1DrAEaMB78MUlnGxBRwZI,3949
|
|
53
54
|
netbox_dns/forms/registration_contact.py,sha256=IhNAqElY7hOdpDG0jwWMdy3y2mB43xmjUhj3lsgJ3SE,5906
|
|
54
55
|
netbox_dns/forms/view.py,sha256=GacwKHXSDvxQEs-d3ys7rietqA_MzpSd0XjWaSsIbU0,10339
|
|
55
|
-
netbox_dns/forms/zone.py,sha256=
|
|
56
|
-
netbox_dns/forms/zone_template.py,sha256=
|
|
56
|
+
netbox_dns/forms/zone.py,sha256=0Lr3pWU21Tn70t32CXsEfJn6h5S2ulQugDTkEqva2Zw,29398
|
|
57
|
+
netbox_dns/forms/zone_template.py,sha256=0VXGG59EH9IJJ-Nq5Bn-eiNJNqT_ZiLADSDyuYWXSLE,11280
|
|
57
58
|
netbox_dns/graphql/__init__.py,sha256=0xg_5d1PPFTadBOZo752t5sfZeLFrqs2jM51Rbf8ti4,652
|
|
58
|
-
netbox_dns/graphql/
|
|
59
|
+
netbox_dns/graphql/enums.py,sha256=vC-v24AuNbaGoekLTDu1PBVbnR1aYeX6LmvrZkfd2F4,1453
|
|
60
|
+
netbox_dns/graphql/filter_lookups.py,sha256=P6wW2JrtkzUiIx6mJz_DvwYg5Sov68IKAx0zVQfuvYY,355
|
|
59
61
|
netbox_dns/graphql/schema.py,sha256=KlbJmlfQEqZhvb6-cYmq94mrMFcQoCh3MldaUD5eVV4,2904
|
|
60
62
|
netbox_dns/graphql/types.py,sha256=LIXmzn2QbWU9PzS8Fa2X2hy7GqMiGz50HeNfAOfWzUA,10161
|
|
61
|
-
netbox_dns/
|
|
63
|
+
netbox_dns/graphql/filters/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
|
|
64
|
+
netbox_dns/graphql/filters/dnssec_key_template.py,sha256=EPZqXaQyZ6UAnUgKy6_NjxbhXDbOI8oM7I62BuwGzR0,2071
|
|
65
|
+
netbox_dns/graphql/filters/dnssec_policy.py,sha256=MImrsCGjNKxqCRB8HGOoNKyqxRuZyhq3su_nT5hdxW4,4651
|
|
66
|
+
netbox_dns/graphql/filters/nameserver.py,sha256=iiBQ_1_id-eVgDjtcCYCnVlMG4QeP-lz3p3ZuoGaW3k,1045
|
|
67
|
+
netbox_dns/graphql/filters/record.py,sha256=RqJNgLcFJ-Q4ZxV8fqAKXAPpjl6yDxSJz-pWGHIsoS8,3308
|
|
68
|
+
netbox_dns/graphql/filters/record_template.py,sha256=3kIeIoPzl3RV7yE-h8Bdc7Lt7VXbtK86uOARFM8UmDo,1814
|
|
69
|
+
netbox_dns/graphql/filters/registrar.py,sha256=hiGBl4Fkv_yy8f-I7P25ZAFLrK4Z4hRt9C9hBNSGT14,1153
|
|
70
|
+
netbox_dns/graphql/filters/registration_contact.py,sha256=Gwwj55846y90xJiVIdBfPDqrKX_9tjxy6UwfXPbIFJo,1397
|
|
71
|
+
netbox_dns/graphql/filters/view.py,sha256=dNjGoSj5aKuQmofRDEIhxTs07ZWc8T0uheI6FOPTafQ,929
|
|
72
|
+
netbox_dns/graphql/filters/zone.py,sha256=y5262E4Xqghny8-oUgkt0pod5KtPvZjxAsEowJ5HCdU,5248
|
|
73
|
+
netbox_dns/graphql/filters/zone_template.py,sha256=I7_NFFkI8dsVMgIS5PV-VBkoxGZg2w74G3XXq2Fmdco,3095
|
|
74
|
+
netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=ERg4czwv3Yz6luunGaa6Xw9S_dFS8oeWuBT6ZS17X0Y,29854
|
|
62
75
|
netbox_dns/locale/en/LC_MESSAGES/django.mo,sha256=GDnSZkfHs3yjtTsll7dksEEej4B50F8pc9RGytZNubM,393
|
|
63
|
-
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
76
|
+
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=XjWCnhwjI4Iwht_2JpPLB2btIg6f4ED8F3LqYPwNffA,30023
|
|
64
77
|
netbox_dns/management/commands/cleanup_database.py,sha256=1-tAl0Sht80qaNZyfFyUW19Eh9gBUuc7GdbHN4aemGU,5935
|
|
65
78
|
netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=UFRURLBcFeGHUS2lrYFv7UWIebjI72aG1EUQJt0XsXw,2046
|
|
66
79
|
netbox_dns/management/commands/rebuild_dnssync.py,sha256=Tcl385u6kJTX47SvSyRzKm1RIx4nYRYCMcKr3uVnV60,1246
|
|
@@ -84,6 +97,7 @@ netbox_dns/migrations/0014_alter_unique_constraints_lowercase.py,sha256=Ueesv7uo
|
|
|
84
97
|
netbox_dns/migrations/0015_dnssec.py,sha256=PRS8wjN3_h-M17gOHagM-5pkZuuS5nlaJjlIqzKr5f8,6716
|
|
85
98
|
netbox_dns/migrations/0016_dnssec_policy_status.py,sha256=MAGTAz95WYkp2PR1Q1EQehEvAYgL1V-ksMa3wlKHgGE,384
|
|
86
99
|
netbox_dns/migrations/0017_dnssec_policy_zone_zone_template.py,sha256=m36a08UMLzs2l-IpKY1nXdspcbGouCQWMG15m19s8kE,1162
|
|
100
|
+
netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py,sha256=P_JaNl3NhTPgX7pgA-ZyBJpujrg4HzPcpW6X3FbghMk,595
|
|
87
101
|
netbox_dns/migrations/0020_netbox_3_4.py,sha256=UMcHdn8ZAuQjUaM_3rEGpktYrM0TuvhccD7Jt7WQnPs,1271
|
|
88
102
|
netbox_dns/migrations/0021_record_ip_address.py,sha256=EqdhWXmq7aiK4X79xTRUZng3zFncCl-8JoO65HqlJKw,3244
|
|
89
103
|
netbox_dns/migrations/0022_search.py,sha256=KW1ffEZ4-0dppGQ_KD1EN7iw8eQJOnDco-xfJFRZqKQ,172
|
|
@@ -98,16 +112,16 @@ netbox_dns/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
98
112
|
netbox_dns/mixins/__init__.py,sha256=LxTEfpod_RHCyMtnzDljv0_dwqp2z3Q6tqbXW8LTGD8,35
|
|
99
113
|
netbox_dns/mixins/object_modification.py,sha256=AR64fU5f7g-scNAj9b54eSoS9dpjyOpqrxXVXPcOhY8,1807
|
|
100
114
|
netbox_dns/models/__init__.py,sha256=CuwFENIVUv0FNMDlY18Am-mvN5kBGkPOGavCP0cle7c,273
|
|
101
|
-
netbox_dns/models/dnssec_key_template.py,sha256=
|
|
102
|
-
netbox_dns/models/dnssec_policy.py,sha256=
|
|
103
|
-
netbox_dns/models/nameserver.py,sha256=
|
|
104
|
-
netbox_dns/models/record.py,sha256=
|
|
105
|
-
netbox_dns/models/record_template.py,sha256=
|
|
106
|
-
netbox_dns/models/registrar.py,sha256=
|
|
107
|
-
netbox_dns/models/registration_contact.py,sha256=
|
|
108
|
-
netbox_dns/models/view.py,sha256=
|
|
109
|
-
netbox_dns/models/zone.py,sha256=
|
|
110
|
-
netbox_dns/models/zone_template.py,sha256
|
|
115
|
+
netbox_dns/models/dnssec_key_template.py,sha256=KJYMikpOzfCeFFg4i6c92G_YhMFtNYPZk3BRf74jkCc,2586
|
|
116
|
+
netbox_dns/models/dnssec_policy.py,sha256=TogIEzcpgWg0Mlz4B1gGZKUJ278-mU-6WuIxHtiNgxY,5267
|
|
117
|
+
netbox_dns/models/nameserver.py,sha256=FYgImt8fuUuNbXR3yW8l_PS0yQ0RqWfaPW4hx3lrsn8,3847
|
|
118
|
+
netbox_dns/models/record.py,sha256=eL20LeQ__IXA_sAtdUx8L1elH6NQoM6PzKyb9I0mtIM,29613
|
|
119
|
+
netbox_dns/models/record_template.py,sha256=UCn7grHjJvssc9SxB_rt5qx7fqCuwc1UmcANNk_7-CE,5144
|
|
120
|
+
netbox_dns/models/registrar.py,sha256=AN-HxDH-pYvx79jRjzVIwCVqstbSaZxLMS1Dx3tV8lc,1746
|
|
121
|
+
netbox_dns/models/registration_contact.py,sha256=M7GCB4rGNOHseuDOVnjWDyiJjNNxE3k4hd2S0cIxRTg,3619
|
|
122
|
+
netbox_dns/models/view.py,sha256=HigxqIB02FF9c_Lxv7ufWw0QlOxrQYPE9J0ack04ZHM,4617
|
|
123
|
+
netbox_dns/models/zone.py,sha256=4zRb5k5tQt4jyjaEG-R7213PQK_pTUFcc0qN1sm_xVY,34916
|
|
124
|
+
netbox_dns/models/zone_template.py,sha256=1KWowmcfTGN81R5IpqaupSTG_BFJQHRw2vQ_pEAQHVE,5050
|
|
111
125
|
netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
126
|
netbox_dns/signals/dnssec.py,sha256=o4MOEg6ftxoDWFAhDtajkXzb7Nb6KuUHjtx1zNu7C1w,1040
|
|
113
127
|
netbox_dns/signals/ipam_dnssync.py,sha256=1zhlf4cMcJLlFosX7YzyqVYdFFHV4MFwTz5KCdL8xQc,7730
|
|
@@ -121,7 +135,7 @@ netbox_dns/tables/record_template.py,sha256=HJEOK3VYVCKWhExs775Nb4KAvHPE7IqQEzne
|
|
|
121
135
|
netbox_dns/tables/registrar.py,sha256=XQtJj0c4O4gpCdUp903GSD0tIuARmJw13Nwosw9pTFU,727
|
|
122
136
|
netbox_dns/tables/registration_contact.py,sha256=n_FKE90j6KNgPKRVq1WXg4vnOzFE238oXsi_NYVAU9M,931
|
|
123
137
|
netbox_dns/tables/view.py,sha256=gsuWQWAk3RstNIKzBDOHNHR2D3ykX6WigYLMj0VhQFs,1148
|
|
124
|
-
netbox_dns/tables/zone.py,sha256=
|
|
138
|
+
netbox_dns/tables/zone.py,sha256=TEQcSiuCuWpVtDnPa9oh-IDfrap-Plfi4qK40bGeDzA,2432
|
|
125
139
|
netbox_dns/tables/zone_template.py,sha256=TU45sNYPHxs1xJTKj57e1s-jxLENCOAgE6S6lconWMc,1751
|
|
126
140
|
netbox_dns/templates/netbox_dns/dnsseckeytemplate.html,sha256=dSEyHgUp0k_5JSdR4s4m_7Rom67TqvRIQN0zbQKYfjE,2839
|
|
127
141
|
netbox_dns/templates/netbox_dns/dnssecpolicy.html,sha256=dXHAt8ISsSWv-vK_kaJMcAzUBh4TZ2hAmeaYa47u0PU,7694
|
|
@@ -144,33 +158,33 @@ netbox_dns/templates/netbox_dns/zone/child_zone.html,sha256=b9CSGWEfWT7hLQ80gApM
|
|
|
144
158
|
netbox_dns/templates/netbox_dns/zone/delegation_record.html,sha256=bpJoyEYb5CVCoeH2260KMwwL6pUJxKA-Dt0qUruBEdk,517
|
|
145
159
|
netbox_dns/templates/netbox_dns/zone/managed_record.html,sha256=LOchMAJyfMZIICE6q0pX1eorRbtgUtOQ1u0VvJKCDZ8,514
|
|
146
160
|
netbox_dns/templates/netbox_dns/zone/record.html,sha256=Y_gg9EUIqjSYxmIZKufAK8jyg9A54J-BoewNxUBoO1Y,2238
|
|
147
|
-
netbox_dns/templates/netbox_dns/zone/registration.html,sha256=
|
|
161
|
+
netbox_dns/templates/netbox_dns/zone/registration.html,sha256=jbgKoMVG8YNNXTBDEclUCxfj4KbV05C250jt6x6n9cc,2069
|
|
148
162
|
netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html,sha256=rWlmb3zRQbLYQ_1dsa0twwu6y1dRj2tfFVEERH07p-s,517
|
|
149
163
|
netbox_dns/templates/netbox_dns/zonetemplate/child.html,sha256=S8BMNOZkfs8SM_4yfKR8_RnQXG47FHCe7rf2quDTc_Y,2247
|
|
150
164
|
netbox_dns/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
165
|
netbox_dns/templatetags/netbox_dns.py,sha256=DND1DMPzv636Rak3M6Hor_Vw6pjqUfSTquofIw4dIsA,223
|
|
152
166
|
netbox_dns/utilities/__init__.py,sha256=cSGf-nGaRWx9b-Xrh3dLMJYoWNsZ6FF-qdmV4F1uOgg,74
|
|
153
|
-
netbox_dns/utilities/conversions.py,sha256=
|
|
167
|
+
netbox_dns/utilities/conversions.py,sha256=qYnzecmR28l8Je_H0vFvzJ2sikTiEiyxr6drl_aRocg,3016
|
|
154
168
|
netbox_dns/utilities/dns.py,sha256=UBiyQe8thiOTnKOmU9e2iRHHnGF9toVLe4efU623kX4,322
|
|
155
169
|
netbox_dns/utilities/ipam_dnssync.py,sha256=_yuHoah_QN-opsZB51yGCkwjkij7nrmTgKHUZ-bQrBI,9625
|
|
156
170
|
netbox_dns/validators/__init__.py,sha256=X0hPZlC3VZcXMcvXKZ2_5LSoEJdXPNSBr4QtEIFSBJ0,94
|
|
157
171
|
netbox_dns/validators/dns_name.py,sha256=Sil68Av49jfZPzgFMV_1qEcLnuuAWXmbxfAJPDXUsGg,3766
|
|
158
|
-
netbox_dns/validators/dns_value.py,sha256
|
|
172
|
+
netbox_dns/validators/dns_value.py,sha256=cADhgTohXAtOLPzaoMKO9DahEUiDanpdiuKonrwFw0E,5278
|
|
159
173
|
netbox_dns/validators/dnssec.py,sha256=FzWLXX3qwS9ZMaLWHaBJStwJ_D96wp7GI4LYoKjoegc,4909
|
|
160
174
|
netbox_dns/validators/rfc2317.py,sha256=uKkwxpakiFFKdYA0qy8WSlEnbFwJD4MDw6gGV4F6skg,706
|
|
161
175
|
netbox_dns/views/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
162
|
-
netbox_dns/views/dnssec_key_template.py,sha256=
|
|
163
|
-
netbox_dns/views/dnssec_policy.py,sha256=
|
|
164
|
-
netbox_dns/views/nameserver.py,sha256=
|
|
165
|
-
netbox_dns/views/record.py,sha256=
|
|
166
|
-
netbox_dns/views/record_template.py,sha256=
|
|
167
|
-
netbox_dns/views/registrar.py,sha256=
|
|
168
|
-
netbox_dns/views/registration_contact.py,sha256=
|
|
169
|
-
netbox_dns/views/view.py,sha256=
|
|
170
|
-
netbox_dns/views/zone.py,sha256=
|
|
171
|
-
netbox_dns/views/zone_template.py,sha256=
|
|
172
|
-
netbox_plugin_dns-1.
|
|
173
|
-
netbox_plugin_dns-1.
|
|
174
|
-
netbox_plugin_dns-1.
|
|
175
|
-
netbox_plugin_dns-1.
|
|
176
|
-
netbox_plugin_dns-1.
|
|
176
|
+
netbox_dns/views/dnssec_key_template.py,sha256=2psuQ7IFdomZbw04wseH2YAeybwwl_fY_7Tc4Mi9MyQ,2640
|
|
177
|
+
netbox_dns/views/dnssec_policy.py,sha256=ZvkCVfvI78w8e9c0m8lSWgRwg-jg07PM8Od0HwAVjGI,4427
|
|
178
|
+
netbox_dns/views/nameserver.py,sha256=cLB0W1UnnvEmYdoCYH5HmjrFhbEZ1gWxJTKdMS-wuh0,3564
|
|
179
|
+
netbox_dns/views/record.py,sha256=e7pH_312djse7d-YSpIfzzOk5jKBDnSpsCDu0ESvBfM,6371
|
|
180
|
+
netbox_dns/views/record_template.py,sha256=p9bg3HoXfKxut-t7gw8xkC-lv3D9Q_B3BC0eIBVbOhU,2936
|
|
181
|
+
netbox_dns/views/registrar.py,sha256=gYpMyz3rRJDmBfEeRfVENvR6fdWXN1y0XbN4JBlXoHc,2625
|
|
182
|
+
netbox_dns/views/registration_contact.py,sha256=5bJWjNBisqCkBo6d2TJyyBJlc95WM7VcSA6wsEB184k,3383
|
|
183
|
+
netbox_dns/views/view.py,sha256=xLXt7sKrda3FpNXsBSJk8L8P2XhZ1sVb5OOXovCsKEU,3089
|
|
184
|
+
netbox_dns/views/zone.py,sha256=tJiQWMmcuWX6OBtsflQwoTNVjp_GzeZ3-jmywRp74ZU,7065
|
|
185
|
+
netbox_dns/views/zone_template.py,sha256=bc0oRftfWi_46UirR3zx9JW4b1E1c2Ump2q8rEQJXug,2449
|
|
186
|
+
netbox_plugin_dns-1.3b1.dist-info/licenses/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
|
|
187
|
+
netbox_plugin_dns-1.3b1.dist-info/METADATA,sha256=yOYiaXnNfElksYo2ye3As5C7RvuGjA-nIz5mahrWLeo,7683
|
|
188
|
+
netbox_plugin_dns-1.3b1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
189
|
+
netbox_plugin_dns-1.3b1.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
|
|
190
|
+
netbox_plugin_dns-1.3b1.dist-info/RECORD,,
|
netbox_dns/graphql/filters.py
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import strawberry_django
|
|
2
|
-
|
|
3
|
-
from netbox.graphql.filter_mixins import autotype_decorator, BaseFilterMixin
|
|
4
|
-
|
|
5
|
-
from netbox_dns.models import (
|
|
6
|
-
NameServer,
|
|
7
|
-
View,
|
|
8
|
-
Zone,
|
|
9
|
-
Record,
|
|
10
|
-
DNSSECKeyTemplate,
|
|
11
|
-
DNSSECPolicy,
|
|
12
|
-
RegistrationContact,
|
|
13
|
-
Registrar,
|
|
14
|
-
ZoneTemplate,
|
|
15
|
-
RecordTemplate,
|
|
16
|
-
)
|
|
17
|
-
from netbox_dns.filtersets import (
|
|
18
|
-
NameServerFilterSet,
|
|
19
|
-
ViewFilterSet,
|
|
20
|
-
ZoneFilterSet,
|
|
21
|
-
RecordFilterSet,
|
|
22
|
-
DNSSECKeyTemplateFilterSet,
|
|
23
|
-
DNSSECPolicyFilterSet,
|
|
24
|
-
RegistrationContactFilterSet,
|
|
25
|
-
RegistrarFilterSet,
|
|
26
|
-
ZoneTemplateFilterSet,
|
|
27
|
-
RecordTemplateFilterSet,
|
|
28
|
-
)
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
@strawberry_django.filter(NameServer, lookups=True)
|
|
32
|
-
@autotype_decorator(NameServerFilterSet)
|
|
33
|
-
class NetBoxDNSNameServerFilter(BaseFilterMixin):
|
|
34
|
-
pass
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
@strawberry_django.filter(View, lookups=True)
|
|
38
|
-
@autotype_decorator(ViewFilterSet)
|
|
39
|
-
class NetBoxDNSViewFilter(BaseFilterMixin):
|
|
40
|
-
pass
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
@strawberry_django.filter(Zone, lookups=True)
|
|
44
|
-
@autotype_decorator(ZoneFilterSet)
|
|
45
|
-
class NetBoxDNSZoneFilter(BaseFilterMixin):
|
|
46
|
-
rfc2317_prefix: str | None
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
@strawberry_django.filter(Record, lookups=True)
|
|
50
|
-
@autotype_decorator(RecordFilterSet)
|
|
51
|
-
class NetBoxDNSRecordFilter(BaseFilterMixin):
|
|
52
|
-
ip_address: str | None
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
@strawberry_django.filter(DNSSECKeyTemplate, lookups=True)
|
|
56
|
-
@autotype_decorator(DNSSECKeyTemplateFilterSet)
|
|
57
|
-
class NetBoxDNSDNSSECKeyTemplateFilter(BaseFilterMixin):
|
|
58
|
-
ip_address: str | None
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
@strawberry_django.filter(DNSSECPolicy, lookups=True)
|
|
62
|
-
@autotype_decorator(DNSSECPolicyFilterSet)
|
|
63
|
-
class NetBoxDNSDNSSECPolicyFilter(BaseFilterMixin):
|
|
64
|
-
ip_address: str | None
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
@strawberry_django.filter(ZoneTemplate, lookups=True)
|
|
68
|
-
@autotype_decorator(ZoneTemplateFilterSet)
|
|
69
|
-
class NetBoxDNSZoneTemplateFilter(BaseFilterMixin):
|
|
70
|
-
pass
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
@strawberry_django.filter(RecordTemplate, lookups=True)
|
|
74
|
-
@autotype_decorator(RecordTemplateFilterSet)
|
|
75
|
-
class NetBoxDNSRecordTemplateFilter(BaseFilterMixin):
|
|
76
|
-
pass
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
@strawberry_django.filter(RegistrationContact, lookups=True)
|
|
80
|
-
@autotype_decorator(RegistrationContactFilterSet)
|
|
81
|
-
class NetBoxDNSRegistrationContactFilter(BaseFilterMixin):
|
|
82
|
-
pass
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
@strawberry_django.filter(Registrar, lookups=True)
|
|
86
|
-
@autotype_decorator(RegistrarFilterSet)
|
|
87
|
-
class NetBoxDNSRegistrarFilter(BaseFilterMixin):
|
|
88
|
-
pass
|
|
File without changes
|
|
File without changes
|