Browse Source

Fixes #2705: Fix endpoint grouping in API docs

Jeremy Stretch 7 years ago
parent
commit
beff774295
2 changed files with 2 additions and 0 deletions
  1. 1 0
      CHANGELOG.md
  2. 1 0
      netbox/netbox/views.py

+ 1 - 0
CHANGELOG.md

@@ -2,6 +2,7 @@ v2.5.8 (FUTURE)
 
 
 ## Bug Fixes
 ## Bug Fixes
 
 
+* [#2705](https://github.com/digitalocean/netbox/issues/2705) - Fix endpoint grouping in API docs
 * [#2923](https://github.com/digitalocean/netbox/issues/2923) - Provider filter form's site field should be blank by default
 * [#2923](https://github.com/digitalocean/netbox/issues/2923) - Provider filter form's site field should be blank by default
 
 
 ---
 ---

+ 1 - 0
netbox/netbox/views.py

@@ -267,6 +267,7 @@ class SearchView(View):
 class APIRootView(APIView):
 class APIRootView(APIView):
     _ignore_model_permissions = True
     _ignore_model_permissions = True
     exclude_from_schema = True
     exclude_from_schema = True
+    swagger_schema = None
 
 
     def get_view_name(self):
     def get_view_name(self):
         return "API Root"
         return "API Root"