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
Instead of item=”true” we can put the name of the identifier. This will align this to open api 3.0 spec.
For example <Request item="action"> instead of <Request item="true" />
<Request item="action">
<Request item="true" />
So open api url become to /resource/{action} instead of /resource/{id}
/resource/{action}
/resource/{id}
The text was updated successfully, but these errors were encountered:
@d3ep4k Even if change it to item="${identifier}" would we be able to use that identifier anywhere else?
item="${identifier}"
Sorry, something went wrong.
@richard937 does it generate with the item value in the url now?
yes
Merge pull request #6 from richard937/openapi_enhancement
deb9ba5
made changes for item={identifier} issue #3
richard937
No branches or pull requests
Instead of item=”true” we can put the name of the identifier. This will align this to open api 3.0 spec.
For example
<Request item="action">
instead of<Request item="true" />
So open api url become to
/resource/{action}
instead of/resource/{id}
The text was updated successfully, but these errors were encountered: