1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Moved TopologyMaps from DCIM to extras

This commit is contained in:
Jeremy Stretch
2017-03-08 16:12:14 -05:00
parent 68c099a2af
commit f43fbffdf7
8 changed files with 157 additions and 88 deletions

16
netbox/extras/api/urls.py Normal file
View File

@@ -0,0 +1,16 @@
from django.conf.urls import include, url
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
router.register(r'topology-maps', views.TopologyMapViewSet)
urlpatterns = [
url(r'', include(router.urls)),
]