netbox-plugin-interface-sync/netbox_interface_sync/urls.py
NetTech2001 b48cfaca4b Ready for netboxcommunity
This plugin has been re-developed for Netbox 4. The sync button has been redesigned as well as the colors of the sync table.
2024-05-17 16:00:56 -06:00

11 lines
341 B
Python

from django.urls import path
from . import views
# Define a list of URL patterns to be imported by NetBox. Each pattern maps a URL to
# a specific view so that it can be accessed by users.
urlpatterns = (
path("interface-comparison/<int:device_id>/", views.InterfaceComparisonView.as_view(), name="interface_comparison"),
)