Skip to content

Commit

Permalink
Update URL in SwaggerConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
haideriqbal committed Jan 14, 2025
1 parent fc0d0bc commit 254bfb9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@Configuration
public class SwaggerConfig {

private final String OLS4_SERVER_URL = "https://wwwdev.ebi.ac.uk/ols4";
private final String OLS4_SERVER_URL = "https://www.ebi.ac.uk/ols4";

@Lazy
@Bean
Expand All @@ -23,7 +23,7 @@ public OpenAPI customOpenApi(ServletContext context) {
.addServersItem(new Server().url(serverUrl))
.info(new Info()
.title("OLS Service")
.description("REST API for OLS. Please see <a href='"+OLS4_SERVER_URL+"/defined-response-fields' target='_blank' style='font-weight: bold; font-size: 16px;'>this page</a> for defined response field in OLS.")
.description("REST API for OLS. Please see <a href='"+OLS4_SERVER_URL+"/defined-response-fields' target='_blank'> this page</a> for defined response field in OLS.")
.version("3.0")
.termsOfService("https://www.ebi.ac.uk/about/terms-of-use/")
.license(new License()
Expand Down

0 comments on commit 254bfb9

Please sign in to comment.