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

Closes #5190: Add a REST API endpoint for content types

This commit is contained in:
Jeremy Stretch
2020-10-09 15:08:29 -04:00
parent 66c4597525
commit 3df3706f27
7 changed files with 75 additions and 6 deletions

View File

@@ -29,5 +29,8 @@ router.register('object-changes', views.ObjectChangeViewSet)
# Job Results
router.register('job-results', views.JobResultViewSet)
# ContentTypes
router.register('content-types', views.ContentTypeViewSet)
app_name = 'extras-api'
urlpatterns = router.urls