From 781d1b18e76279d03887f816072c7f262a96e46a Mon Sep 17 00:00:00 2001 From: Aleksei Mikhailov Date: Sat, 18 May 2019 16:07:16 +0300 Subject: [PATCH 1/2] Fix excluding schema view from doc for DRF 3.9 --- rest_framework_swagger/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rest_framework_swagger/views.py b/rest_framework_swagger/views.py index 851f5102..7e44674b 100644 --- a/rest_framework_swagger/views.py +++ b/rest_framework_swagger/views.py @@ -15,6 +15,7 @@ def get_swagger_view(title=None, url=None, patterns=None, urlconf=None): class SwaggerSchemaView(APIView): _ignore_model_permissions = True exclude_from_schema = True + schema = None permission_classes = [AllowAny] renderer_classes = [ CoreJSONRenderer, From a6bc5066944872e70a4ce7728576bd635ffc9982 Mon Sep 17 00:00:00 2001 From: "a.mikhailov" Date: Thu, 19 Nov 2020 18:26:08 +0200 Subject: [PATCH 2/2] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bd6abc27..5a44f779 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ This project is no longer being maintained. Please consider **drf-yasg** as an alternative/successor. I haven't personally used it, but it looks feature-complete and is actively maintained. +### New changes ### https://github.com/axnsan12/drf-yasg Thanks for all the support and contributions over the years. Special thanks to [Lights on Software](https://lightsonsoftware.com/), [Lincoln Loop](https://lincolnloop.com/) and BNOTIONS for generously donating time to work on this project :heart:.