mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
|
|
class ExtrasRootView(routers.APIRootView):
|
|
"""
|
|
Extras API root view
|
|
"""
|
|
def get_view_name(self):
|
|
return 'Extras'
|
|
|
|
|
|
router = routers.DefaultRouter()
|
|
router.APIRootView = ExtrasRootView
|
|
|
|
# Field choices
|
|
router.register('_choices', views.ExtrasFieldChoicesViewSet, basename='field-choice')
|
|
|
|
# Custom field choices
|
|
router.register('_custom_field_choices', views.CustomFieldChoicesViewSet, basename='custom-field-choice')
|
|
|
|
# Graphs
|
|
router.register('graphs', views.GraphViewSet)
|
|
|
|
# Export templates
|
|
router.register('export-templates', views.ExportTemplateViewSet)
|
|
|
|
# Tags
|
|
router.register('tags', views.TagViewSet)
|
|
|
|
# Image attachments
|
|
router.register('image-attachments', views.ImageAttachmentViewSet)
|
|
|
|
# Config contexts
|
|
router.register('config-contexts', views.ConfigContextViewSet)
|
|
|
|
# Reports
|
|
router.register('reports', views.ReportViewSet, basename='report')
|
|
|
|
# Scripts
|
|
router.register('scripts', views.ScriptViewSet, basename='script')
|
|
|
|
# Change logging
|
|
router.register('object-changes', views.ObjectChangeViewSet)
|
|
|
|
app_name = 'extras-api'
|
|
urlpatterns = router.urls
|