mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
14 lines
314 B
Python
14 lines
314 B
Python
from utilities.api import OrderedDefaultRouter
|
|
from . import views
|
|
|
|
|
|
router = OrderedDefaultRouter()
|
|
router.APIRootView = views.TenancyRootView
|
|
|
|
# Tenants
|
|
router.register('tenant-groups', views.TenantGroupViewSet)
|
|
router.register('tenants', views.TenantViewSet)
|
|
|
|
app_name = 'tenancy-api'
|
|
urlpatterns = router.urls
|