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
Hi, I have an issue that I believe was fixed by #221 but then got overridden by #455. I think it was needed to support both cases, not just "fix" those specs: https://github.com/ruby-grape/grape-swagger/pull/455/files#diff-2b857d0b8829328970ec856ccd7d8ac3L43
Right now things like
requires :group, type: Array do requires :param_1, type: Integer requires :param_2, type: String end
are being displayed as a simple Hash, not as an Array.
Hash
Array
I would expect to have group[][param_1] and group[][param_2] instead
group[][param_1]
group[][param_2]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hi, I have an issue that I believe was fixed by #221 but then got overridden by #455.
I think it was needed to support both cases, not just "fix" those specs: https://github.com/ruby-grape/grape-swagger/pull/455/files#diff-2b857d0b8829328970ec856ccd7d8ac3L43
Right now things like
are being displayed as a simple
Hash
, not as anArray
.I would expect to have
group[][param_1]
andgroup[][param_2]
insteadThe text was updated successfully, but these errors were encountered: