Show blank root page for the gateway.

This can ultimately be replaced with a website list / search engine.
This commit is contained in:
CalDescent 2022-01-02 17:07:48 +00:00
parent ef784124f3
commit 75d9347d23

View File

@ -69,6 +69,11 @@ public class GatewayResource {
} }
@GET
public HttpServletResponse getRoot() {
return ArbitraryDataRenderer.getResponse(response, 200, "");
}
@GET @GET
@Path("{name}/{path:.*}") @Path("{name}/{path:.*}")