sanic-ext icon indicating copy to clipboard operation
sanic-ext copied to clipboard

[Bug]

Open hu0514 opened this issue 1 year ago • 3 comments

Describe the bug

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

Adding body overrides summary and is normal if not added

hu0514 avatar Jun 05 '23 05:06 hu0514

I want to put the body method in my own decorator, it doesn't seem to work, I don't know why

hu0514 avatar Jun 06 '23 04:06 hu0514

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 ```python before the code and a line ``` after it:

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 test and using something imported named test.

shaib avatar Jul 15 '23 10:07 shaib

@hu0514 what exactly is openapi? Where are you importing it from? Please include all the imports with your code sample and fill in ALL the fields in the bug report template, such as expected behaviour and explaining how that's different to what's happening.

prryplatypus avatar Aug 14 '23 11:08 prryplatypus