first commit
Some checks failed
ci / deploy (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled

This commit is contained in:
Vlastislav Svatek
2026-06-05 10:39:05 +02:00
commit 673e67106e
217 changed files with 76612 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from django.urls import path
from netbox.api.routers import NetBoxRouter
from . import views
app_name = "netbox_librenms_plugin"
router = NetBoxRouter()
router.register("interface-type-mappings", views.InterfaceTypeMappingViewSet)
urlpatterns = [
path("jobs/<int:job_pk>/sync-status/", views.sync_job_status, name="sync_job_status"),
] + router.urls