{#include main} {#title}Quarkus REST Endpoints{/title} {#style} h5{ background: gainsboro; margin-top: 20px; margin-bottom: 20px; padding: 10px; } .static{ margin-top: 5px; } {/style} {#body}
REST Resources
{#for endpoint in info:endpointScores.endpoints}
{endpoint.httpMethod} {endpoint.fullPath}
{#if !endpoint.produces.isEmpty()}
Produces
{endpoint.produces}
{/if} {#if !endpoint.consumes.isEmpty()}
Consumes
{endpoint.consumes}
{/if} {/for}
Static Resources
{#for resource in info:staticResourceInfo.resourceMap.get("/").children.orEmpty}
{#if resource.isFolder} {resource.lastName} {#else} {resource.lastName} {/if}
{/for}
Additional Endpoints
{#for additionalEndpoint in info:additionalEndpointInfo}
{#if additionalEndpoint.description} {additionalEndpoint.description} {#else} {additionalEndpoint.endpoint} {/if}
{/for} {/body} {/include}