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

15 lines
279 B
Python
Raw Normal View History

2017-03-08 16:12:14 -05:00
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
2017-03-09 13:24:02 -05:00
# Topology maps
2017-03-08 16:12:14 -05:00
router.register(r'topology-maps', views.TopologyMapViewSet)
# Recent activity
router.register(r'recent-activity', views.RecentActivityViewSet)
2017-03-09 13:24:02 -05:00
urlpatterns = router.urls