I am new to quarkus and have a bit familiar with swagger-ui. I am able to add a @Parameter to the an endpoint like this:
@Parameter(in = ParameterIn.HEADER, required = true, name = "my-header-id")
But, I would like to add this param to every endpoint. How can I achieve this?
I am using quarkus-smallrye-openapi for the ui.