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
Took me a long time to figure this one out:
### <- a single space here # summary: Get maintenance tasks # responses: # 200: # description: success # schema: # type: array # items: # $ref: '#/definitions/com.rovitracker.entities.MaintenanceTask' ### GET /maintenanceTasks @controllers.api.RepairApi.maintenanceTasks
Produces:
{ "paths": { "/repairs/maintenanceTasks": { "get": { "operationId":"maintenanceTasks", "tags":["repairs"] } } }, ... }
Which is missing all of the custom data (summary, responses, etc). Ideally the parser would ignore whitespace there. Removing the space fixed it.
Workaround: don't leave a space there
The text was updated successfully, but these errors were encountered:
@alvaroc1 Thank you!
Sorry, something went wrong.
No branches or pull requests
Took me a long time to figure this one out:
Produces:
Which is missing all of the custom data (summary, responses, etc).
Ideally the parser would ignore whitespace there. Removing the space fixed it.
Workaround: don't leave a space there
The text was updated successfully, but these errors were encountered: