mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-12 11:29:36 -06:00
13 lines
248 B
Python
13 lines
248 B
Python
from netbox.api import OrderedDefaultRouter
|
|
from . import views
|
|
|
|
|
|
router = OrderedDefaultRouter()
|
|
router.APIRootView = views.WirelessRootView
|
|
|
|
# SSIDs
|
|
router.register('ssids', views.SSIDViewSet)
|
|
|
|
app_name = 'wireless-api'
|
|
urlpatterns = router.urls
|