django-rest-framework-docs icon indicating copy to clipboard operation
django-rest-framework-docs copied to clipboard

Document Web APIs made with Django Rest Framework

Results 75 django-rest-framework-docs issues
Sort by recently updated
recently updated
newest added

Does anybody still care about the management of pull requests? Do you guys need help? Project is truly awesome, missing few features but still. It would shame to waste that...

help wanted

Hi I have created api calls for my django server and drf docs is taking the all apis from urls pattern and its functions(GET, POST etc from APIViews). The problem...

I have serializer and Django rest docs doesn't understand read_only_fields for example: ``` class SampleSerializer(serializers.ModelSerializer): class Meta: model = Wallet fields = ('id', 'name', 'owner') read_only_fields = ('id','owner') ```

I don't see any possibility to exclude some views from docs. Is this feature implemented ? Problem: I have internal API which is in 'internal' namespace and external one in...

What is the format to be followed for docstring in function based views? How to declare fields in the docstring in function based views?

For ListField and DictField, it seems only support output, but how can I submit?

It would be great if we could hide the API behind a login that only allows superusers to login. I'm up for creating a PR. This functionality could be enabled...

I have a api view. I want to show fields in docs. Do we need a decorator to show fields in docs? ``` @api_view(['POST']) @permission_classes((AllowAny, )) @throttle_classes([AnonRateThrottle]) @api.doc(fields={'email': 'CharField', 'password':'CharField'})...

I am using model view set and register it with router. On /docs url, it shows only option button. It doesn't show request methods(eg. GET, POST etc). Similarly on clicking...

enhancement
help wanted