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
Example Swagger/OpenAPI definition:
openapi: 3.0.0 servers: [] info: version: "1.0.0" title: home-iot-api description: The API paths: /devices: get: callbacks: callbackOne: 'callbackOne': get: operationId: callbackOne responses: '200': $ref: '#/components/schemas/ApiResponse' callbackTwo: 'callbackTwo': get: operationId: callbackTwo responses: '200': $ref: '#/components/schemas/ApiResponse' tags: - Device operationId: register responses: '200': description: successfully registered device components: schemas: ApiResponse: type: object properties: code: type: integer format: int32 message: type: string example: everything is ok
Only the second callback displays. Expecting to see all the defined callbacks.
Steps to reproduce the behavior:
npm run dev
Expecting to see all the defined callbacks.
The text was updated successfully, but these errors were encountered:
fix(callbacks): display all defined callbacks
d219911
Refs #9222
fix(callbacks): display all defined callbacks (#9223)
0144dad
Resolved by #9223
Sorry, something went wrong.
char0n
No branches or pull requests
Q&A (please complete the following information)
Content & configuration
Example Swagger/OpenAPI definition:
Describe the bug you're encountering
Only the second callback displays. Expecting to see all the defined callbacks.
To reproduce...
Steps to reproduce the behavior:
npm run dev
Expected behavior
Expecting to see all the defined callbacks.
Screenshots
The text was updated successfully, but these errors were encountered: