Lim Hoang
Lim Hoang
Am I right in thinking that the `/* istanbul ignore ... */` directive is not supported? I cannot get it to work with your plugin. Do you think it'd be...
Hello again, How has everyone solved the missing csrftoken problem with the liveapi feature? I had to hack the liveapi client to set the X-CSRFTOKEN header by reading from the...
I've implemented something like this on my fork ``` from my_serializers import PasswordSerializer from rest_framework_docs.utils import func_serializer class UserViewSet(viewsets.ViewSet): @func_serializer(serializer_class=PasswordSerializer) @detail_route(methods=['post']) def set_password(self, request, pk=None): serializer = PasswordSerializer(data=request.data) ``` I...
Hi, Sorry I promise this is my last question today. Why did you decide to hide the fields for GET request?
DRF 3.7 introduced a class called "AutoSchema" which allows customizing Link generation. Need to check it out to see if we can simplify this project. https://github.com/encode/django-rest-framework/issues/5382#issuecomment-333125957
Currently the schema generator don't support custom schema object type: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#schema-object-examples. It will just render everything as plain "object". We should support this.
If the route is `web-api/v1.0/foo/` & `web-api/v1.0/bar/` don't nest every thing under `web-api`. Instead make `foo` & `bar` top-level categories.
## Description Currently, the repository layer functions as an in-memory database to retrieve data for the API layer between different requests. It has always been a goal to swap the...