mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 02:49:35 -06: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
|