-
-
Notifications
You must be signed in to change notification settings - Fork 37
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
[Bug] #200
Comments
I want to put the body method in my own decorator, it doesn't seem to work, I don't know why |
Hi, I was looking at the list of bugs and was curious abut this bug with the empty title. I am not (at least yet) a developer with the Sanic project, but at first look I had a hard time seeing even what you want here. One way you could make yourself clearer is to format your code. I am putting a guess here -- this is done by putting a line def swagger_auto_scheme(doc_scheme, content_type='application/json', gen_app_headers=True):
def inner(func):
openapi.summary('111111111111111111111111')(func)
openapi.body(content=BaseResponse)(func)
return func
return inner
@swagger_auto_scheme(test)
async def test(request):
pass If this is correct than I also have to say, this code looks confusing -- you seem to be both defining a function named |
@hu0514 what exactly is |
Describe the bug
Adding body overrides summary and is normal if not added
The text was updated successfully, but these errors were encountered: