django-rest-swagger icon indicating copy to clipboard operation
django-rest-swagger copied to clipboard

Swagger Documentation Generator for Django REST Framework: deprecated

Results 103 django-rest-swagger issues
Sort by recently updated
recently updated
newest added

Hey @marcgibbons, `python-openapi-codec` now has the ability to set an API description at the top level allowing you to show a description at the top of your API docs. I've...

It would be handy if it would be possible to use custom schema generator without need to define a view seperately

Hi, first of all, Thank you for the great job!! When the NGINX parameter `proxy_set_header Host $host;` is set, the requested host becames duplicated as follows (original host name replaced...

I have a problem when pressing `try it out!` button because request is send to http when my api is listen in https. Is this a bug or a configuration...

I am currently on 2.1.2 and experiencing an issue very much alike https://github.com/marcgibbons/django-rest-swagger/issues/568 and https://github.com/marcgibbons/django-rest-swagger/issues/663. ```python # serializers.py class NestedObjectSerializer(serializers.Serializer): key = serializers.CharField( max_length=200, ) value = serializers.DecimalField( max_digits=3, decimal_places=2,...

I'd like to always show non-public endpoints (eg: those that require authentication). I don't see any setting for this, and can't quite narrow down where this filtering is done in...

I am using ` window.swaggerUi.api.swaggerVersion "2.0" ` I have written a detailed description of the problem on SO. Only one person has commented on my post. They also seem to...

` re_path(r'^test/([^-][\w-]+)/(\d+)/anything', views.SomeView.as_view())` should match 'test/blalbalaba/6668888/foobar/' but the swagger ui display the wrong url `GET /test/{var}/test/(:[-][\w-]+)/{var}/anything`

Why is this important? Well it seems the javascript swagger client will always set the accept header to 'application/json`: https://github.com/swagger-api/swagger-js/issues/1124 When the client does the request against the schema url,...

It seems the document "UI Customization" https://django-rest-swagger.readthedocs.io/en/latest/customization/ doesn't work for the new version (I am using v2.2.0) I want to change the logo with {% block logo %}, but it...