Blake Erickson

Results 9 comments of Blake Erickson

I understand you can't actively work on this issue right now, but just wanted to let you know that I'm also having the same issue where the arrow heads aren't...

Not sure if this will help anyone or not, but I was able to get around not having arrow heads by drawing a line with a triangle on it: ```...

Using the test-app I'm unable to reproduce this. Do you still have `c.swagger_endpoint '/api-docs/v1/swagger.json', 'API V1 Docs'`? Here is how my entire config looks for the test-app ``` #test-app/config/initializers/rswag-ui.rb Rswag::Ui.configure...

Yes. I'm on board for getting rswag to support OA 3.1. Any help would be greatly appreciated :)

What if you change `in: :formData` to `in: :body`?

I'm also running into issues documenting our uploads endpoint with multipart/form-data. I'm not able to get the tests to pass though with the above workarounds, so I'm just skipping this...

I add a `sign_in` method call in the before block of each rswag spec, so something like that can be adapted for your app ``` before do sign_in(user) end ```...

This recent commit https://github.com/rswag/rswag/commit/cbaf6cd3e44c317948520f96abb1e42eb379fef5 fixed support for response examples, but I don't think I've seen any recent commits for request examples. Currently I just include the example field on each...

Not yet. As a temporary workaround looks like maybe you can add `base_path` in rswag, but then remove it from the openapi.json output so that it is still valid? This...