We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The openAPI spec generation for a Django app, assigns incorrect METHOD to some endpoints
Generate the spec for any Django application eg. https://github.com/smahesh29/Django-WebApp
"/users/login.html": { "get": { "responses": {} }, "post": { "responses": {} }, "x-atom-usages": { "call": { "django_web_app/django_web_app/urls.py": [ 25 ] } } }, "/users/logout.html": { "get": { "responses": {} }, "post": { "responses": {} }, "x-atom-usages": { "call": { "django_web_app/django_web_app/urls.py": [ 28 ] } } }
The spec contains endpoints with both GET and POST which looks incorrect
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The openAPI spec generation for a Django app, assigns incorrect METHOD to some endpoints
How to reproduce
Generate the spec for any Django application eg. https://github.com/smahesh29/Django-WebApp
The spec contains endpoints with both GET and POST which looks incorrect
The text was updated successfully, but these errors were encountered: