netbox-plugin-dns 0.21.9__py3-none-any.whl → 0.21.11__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 +1 -1
- netbox_dns/urls.py +37 -1
- {netbox_plugin_dns-0.21.9.dist-info → netbox_plugin_dns-0.21.11.dist-info}/METADATA +1 -1
- {netbox_plugin_dns-0.21.9.dist-info → netbox_plugin_dns-0.21.11.dist-info}/RECORD +6 -6
- {netbox_plugin_dns-0.21.9.dist-info → netbox_plugin_dns-0.21.11.dist-info}/LICENSE +0 -0
- {netbox_plugin_dns-0.21.9.dist-info → netbox_plugin_dns-0.21.11.dist-info}/WHEEL +0 -0
netbox_dns/__init__.py
CHANGED
netbox_dns/urls.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from django.urls import path
|
|
2
2
|
|
|
3
|
-
from netbox.views.generic import ObjectChangeLogView
|
|
3
|
+
from netbox.views.generic import ObjectChangeLogView, ObjectJournalView
|
|
4
4
|
|
|
5
5
|
from netbox_dns.models import View, Zone, Record, NameServer, Contact, Registrar
|
|
6
6
|
from netbox_dns.views import (
|
|
@@ -78,6 +78,12 @@ urlpatterns = [
|
|
|
78
78
|
path("zones/<int:pk>/", ZoneView.as_view(), name="zone"),
|
|
79
79
|
path("zones/<int:pk>/delete/", ZoneDeleteView.as_view(), name="zone_delete"),
|
|
80
80
|
path("zones/<int:pk>/edit/", ZoneEditView.as_view(), name="zone_edit"),
|
|
81
|
+
path(
|
|
82
|
+
"zones/<int:pk>/journal/",
|
|
83
|
+
ObjectJournalView.as_view(),
|
|
84
|
+
name="zone_journal",
|
|
85
|
+
kwargs={"model": Zone},
|
|
86
|
+
),
|
|
81
87
|
path(
|
|
82
88
|
"zones/<int:pk>/changelog/",
|
|
83
89
|
ObjectChangeLogView.as_view(),
|
|
@@ -126,6 +132,12 @@ urlpatterns = [
|
|
|
126
132
|
NameServerDeleteView.as_view(),
|
|
127
133
|
name="nameserver_delete",
|
|
128
134
|
),
|
|
135
|
+
path(
|
|
136
|
+
"nameservers/<int:pk>/journal/",
|
|
137
|
+
ObjectJournalView.as_view(),
|
|
138
|
+
name="nameserver_journal",
|
|
139
|
+
kwargs={"model": NameServer},
|
|
140
|
+
),
|
|
129
141
|
path(
|
|
130
142
|
"nameservers/<int:pk>/changelog/",
|
|
131
143
|
ObjectChangeLogView.as_view(),
|
|
@@ -153,6 +165,12 @@ urlpatterns = [
|
|
|
153
165
|
path("records/<int:pk>/", RecordView.as_view(), name="record"),
|
|
154
166
|
path("records/<int:pk>/edit/", RecordEditView.as_view(), name="record_edit"),
|
|
155
167
|
path("records/<int:pk>/delete/", RecordDeleteView.as_view(), name="record_delete"),
|
|
168
|
+
path(
|
|
169
|
+
"records/<int:pk>/journal/",
|
|
170
|
+
ObjectJournalView.as_view(),
|
|
171
|
+
name="record_journal",
|
|
172
|
+
kwargs={"model": Record},
|
|
173
|
+
),
|
|
156
174
|
path(
|
|
157
175
|
"records/<int:pk>/changelog/",
|
|
158
176
|
ObjectChangeLogView.as_view(),
|
|
@@ -174,6 +192,12 @@ urlpatterns = [
|
|
|
174
192
|
path("views/<int:pk>/edit/", ViewEditView.as_view(), name="view_edit"),
|
|
175
193
|
path("views/<int:pk>/delete/", ViewDeleteView.as_view(), name="view_delete"),
|
|
176
194
|
path("views/<int:pk>/zones/", ViewZoneListView.as_view(), name="view_zones"),
|
|
195
|
+
path(
|
|
196
|
+
"views/<int:pk>/journal/",
|
|
197
|
+
ObjectJournalView.as_view(),
|
|
198
|
+
name="view_journal",
|
|
199
|
+
kwargs={"model": View},
|
|
200
|
+
),
|
|
177
201
|
path(
|
|
178
202
|
"views/<int:pk>/changelog/",
|
|
179
203
|
ObjectChangeLogView.as_view(),
|
|
@@ -204,6 +228,12 @@ urlpatterns = [
|
|
|
204
228
|
ContactZoneListView.as_view(),
|
|
205
229
|
name="contact_zones",
|
|
206
230
|
),
|
|
231
|
+
path(
|
|
232
|
+
"contacts/<int:pk>/journal/",
|
|
233
|
+
ObjectJournalView.as_view(),
|
|
234
|
+
name="contact_journal",
|
|
235
|
+
kwargs={"model": Contact},
|
|
236
|
+
),
|
|
207
237
|
path(
|
|
208
238
|
"contacts/<int:pk>/changelog/",
|
|
209
239
|
ObjectChangeLogView.as_view(),
|
|
@@ -246,6 +276,12 @@ urlpatterns = [
|
|
|
246
276
|
RegistrarZoneListView.as_view(),
|
|
247
277
|
name="registrar_zones",
|
|
248
278
|
),
|
|
279
|
+
path(
|
|
280
|
+
"registrars/<int:pk>/journal/",
|
|
281
|
+
ObjectJournalView.as_view(),
|
|
282
|
+
name="registrar_journal",
|
|
283
|
+
kwargs={"model": Registrar},
|
|
284
|
+
),
|
|
249
285
|
path(
|
|
250
286
|
"registrars/<int:pk>/changelog/",
|
|
251
287
|
ObjectChangeLogView.as_view(),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
netbox_dns/__init__.py,sha256=
|
|
1
|
+
netbox_dns/__init__.py,sha256=nqAZJ1aCDHd5sPMF-Zp8G8Rd3TTkE9bk7bqgf47ARt0,2255
|
|
2
2
|
netbox_dns/api/nested_serializers.py,sha256=Do1wWwWrZ5a4OUuW0Sj8AU3AVlaCu675PAG78RT3dv4,2616
|
|
3
3
|
netbox_dns/api/serializers.py,sha256=RXSETFLwRZQrUus8uzMt7q7wuB-QVoiHBQumQQxyX3s,7673
|
|
4
4
|
netbox_dns/api/urls.py,sha256=R9VmmWtdrjvr35i5d_SfZK2lGn6JzmPuWEKTQlZ8MJo,575
|
|
@@ -93,7 +93,7 @@ netbox_dns/templates/netbox_dns/zone/managed_record.html,sha256=5P85eJuQOB7omih2
|
|
|
93
93
|
netbox_dns/templates/netbox_dns/zone/record.html,sha256=1oIRGXOZAjwmTMkTgArfKyVrmL54Sh_IN7IAF3qYEKM,2218
|
|
94
94
|
netbox_dns/templates/netbox_dns/zone/registration.html,sha256=3R5uqLXZxIJkp9_LVnTTgTV61mITfDPDDNofV7s4d1k,1283
|
|
95
95
|
netbox_dns/templates/netbox_dns/zone.html,sha256=oz_GopJpox3aK_w6F5iqeKuA7-vROQceowGdgTfrj1Y,5852
|
|
96
|
-
netbox_dns/urls.py,sha256=
|
|
96
|
+
netbox_dns/urls.py,sha256=_ET6CstIhCk-H2sVX0XXyfPmWQmCFHVndph_KkTY8-M,8987
|
|
97
97
|
netbox_dns/utilities/__init__.py,sha256=UjYHNp3RxToJgjOLs6iPn5ekETCpES2yWUfuqJXkDyU,1915
|
|
98
98
|
netbox_dns/utilities/ipam_coupling.py,sha256=VbPKTkcSJfgeSirnJ1yoX_HzBYgRgNYKNFjKB7kAPUA,2702
|
|
99
99
|
netbox_dns/validators.py,sha256=mauW5-7a-sjTxyP4qWiRi-kfffGEj9Ma7N2o-BJjx38,2232
|
|
@@ -104,7 +104,7 @@ netbox_dns/views/record.py,sha256=eT-M-rqhCrcmhpEyKOnQ8SWnxAVUgams5e86nVL9uc0,25
|
|
|
104
104
|
netbox_dns/views/registrar.py,sha256=aznSKt1L5tILMLGgcZiBR7u7B8rNl-jM1B2-N0fTeK8,2072
|
|
105
105
|
netbox_dns/views/view.py,sha256=uUvtlNEh5MYoEALvWWaCOqj_Zj8dpGOL2PUyg-UPfEA,1895
|
|
106
106
|
netbox_dns/views/zone.py,sha256=j1wxqEQKYxkQv2DqOHo0gP6e_hZrD2RTyZhkx5CCXFE,3988
|
|
107
|
-
netbox_plugin_dns-0.21.
|
|
108
|
-
netbox_plugin_dns-0.21.
|
|
109
|
-
netbox_plugin_dns-0.21.
|
|
110
|
-
netbox_plugin_dns-0.21.
|
|
107
|
+
netbox_plugin_dns-0.21.11.dist-info/LICENSE,sha256=tziMJKpkMbySr09L6bIwsu7Ca9ICoqpMO3yAXgEMQA4,1076
|
|
108
|
+
netbox_plugin_dns-0.21.11.dist-info/METADATA,sha256=OQbNPaFhPexDrIJ_z89_gKHe4zpLAAqJIAPW4Wx4cCc,3932
|
|
109
|
+
netbox_plugin_dns-0.21.11.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
110
|
+
netbox_plugin_dns-0.21.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|