diff --git a/src/main/webapp/api/css/custom.css b/src/main/webapp/api/css/custom.css index 615f4698..e299efe0 100644 --- a/src/main/webapp/api/css/custom.css +++ b/src/main/webapp/api/css/custom.css @@ -18,4 +18,8 @@ .signature-container .description ul { margin-left: 20px; list-style: disc; +} + +.footer { + display: none; } \ No newline at end of file diff --git a/src/main/webapp/api/index.html b/src/main/webapp/api/index.html index cc9714fa..449e09a6 100644 --- a/src/main/webapp/api/index.html +++ b/src/main/webapp/api/index.html @@ -25,6 +25,10 @@ } url = url.substring(0, url.length - 1); url = url.substring(0, url.lastIndexOf('/')); + var link = $('#title-base-url-link') + link.attr('href', url + '/rest'); + link.html(link.attr('href')); + url = url + '/api/swagger-doc/resources'; window.swaggerUi = new SwaggerUi({ discoveryUrl:url, @@ -73,6 +77,7 @@