Skip to content

Commit

Permalink
Merge pull request #42 from kpetremann/typo
Browse files Browse the repository at this point in the history
chore: fix typo
  • Loading branch information
kpetremann authored Aug 21, 2024
2 parents 1db65c4 + 142b299 commit 9964d79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions netbox_cmdb/netbox_cmdb/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
DeviceBGPSessionEditView,
DeviceBGPSessionListView,
DeviceBGPSessionView,
DeviecBGPSessionDeleteView,
DeviceBGPSessionDeleteView,
RoutePolicyDeleteView,
RoutePolicyEditView,
RoutePolicyListView,
Expand Down Expand Up @@ -99,7 +99,7 @@
),
path(
"device-bgp-session/<int:pk>/delete",
DeviecBGPSessionDeleteView.as_view(),
DeviceBGPSessionDeleteView.as_view(),
name="devicebgpsession_delete",
),
path(
Expand Down
4 changes: 2 additions & 2 deletions netbox_cmdb/netbox_cmdb/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,11 @@ class DeviceBGPSessionEditView(ObjectEditView):
filterset = DeviceBGPSessionFilterSet


class DeviecBGPSessionDeleteView(ObjectDeleteView):
class DeviceBGPSessionDeleteView(ObjectDeleteView):
queryset = DeviceBGPSession.objects.all()


class DeviecBGPSessionBulkDeleteView(BulkDeleteView):
class DeviceBGPSessionBulkDeleteView(BulkDeleteView):
queryset = DeviceBGPSession.objects.all()
filterset = DeviceBGPSessionFilterSet
table = DeviceBGPSessionTable
Expand Down

0 comments on commit 9964d79

Please sign in to comment.