You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A clear and concise description of what you expected to happen.
We expect to have the Request Body field in case of @WriteOperation if it is possible as there is not @RequestBody annotation.
What is the expected result using OpenAPI Description (yml or json)?
Something like this for the LoggersEndpoint :
Describe the bug
After adding
springdoc.show-actuator=true
, I can see all the actuator endpoints 👍 but I cannot see the Request Body field for the@WriteOperation
endpoints (for example https://github.com/spring-projects/spring-boot/blob/47516b50c39bd6ea924a1f6720ce6d4a71088651/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logging/LoggersEndpoint.java#L99).In the following class it seems that only parameters are managed :
springdoc-openapi/springdoc-openapi-common/src/main/java/org/springdoc/core/customizers/ActuatorOpenApiCustomizer.java
Line 23 in f39b640
To Reproduce
Steps to reproduce the behavior:
Expected behavior
We expect to have the Request Body field in case of
@WriteOperation
if it is possible as there is not@RequestBody
annotation.Something like this for the LoggersEndpoint :
The text was updated successfully, but these errors were encountered: