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
By hard coding the schemes tag sites that use http are broken by default. You can use the try button because it 'tries' to use https.
This needs to detect the scheme being used to render and use that.
Something like this:
if schemes.is_a?(Proc) schemes.call(request) elsif schemes.is_a?(String) [schemes] elsif schemes.is_a?(Array) schemes else nil end
The text was updated successfully, but these errors were encountered:
Looking at http://swagger.io/specification/ it appears the default should be to not include it.
Sorry, something went wrong.
yeap, please replace this line endpoint.rb#L30 through your method and make a PR
solved with #382
No branches or pull requests
By hard coding the schemes tag sites that use http are broken by default. You can use the try button because it 'tries' to use https.
This needs to detect the scheme being used to render and use that.
Something like this:
The text was updated successfully, but these errors were encountered: