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

Initial work on a dynamic topology mapper

This commit is contained in:
Jeremy Stretch
2016-04-08 11:48:24 -04:00
parent 2cb99c6012
commit 42e16db8b4
2 changed files with 66 additions and 3 deletions

View File

@ -1,7 +1,7 @@
from django.conf.urls import url
from extras.models import GRAPH_TYPE_INTERFACE, GRAPH_TYPE_SITE
from extras.api.views import GraphListView
from extras.api.views import GraphListView, TopologyMapperView
from .views import *
@ -62,5 +62,6 @@ urlpatterns = [
# Miscellaneous
url(r'^related-connections/$', RelatedConnectionsView.as_view(), name='related_connections'),
url(r'^topology-mapper/$', TopologyMapperView.as_view(), name='topology_mapper'),
]