-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Schema autogeneration #4329
Schema autogeneration #4329
Conversation
For viewset, it exports the corresponding action (list, retrieve, update, etc.). For simple APIView, it returns the http handler (get, post, put, etc.).
Before, an API plugged to a namespace (for instance /account/{pk}/) would erase API plugged to the same namespace with additional URL segments: (for instance /account/{user_id}/book/{pk}/)
Great stuff in here, thanks! |
Okay, so there's a number of different aspects here, some we want, some we probably don't, some may need further thought.
The |
|
On second thoughts I noted that the |
|
Schema Autogeneration
This pull request addresses Schema autogeneration from the API views.