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:. 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,