Skip to content

Commit

Permalink
Update Swagger-UI configuration to include more information about lic…
Browse files Browse the repository at this point in the history
…enses, version, name, etc.
  • Loading branch information
wcgunter committed Mar 26, 2024
1 parent 674d4a4 commit 699530d
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ public Docket api() {

private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("API")
.description("API Desc")
.version("V1")
.title("CWS API")
.description("Documentation of the endpoints used by CWS. Once authenticated, requests can be made to these endpoints (ensure that you are sending the cookie that results from the authentication call!")
.version("2.6.0")
.license("Apache 2.0")
.licenseUrl("https://github.com/NASA-AMMOS/common-workflow-service?tab=Apache-2.0-1-ov-file")
.build();
}

Expand Down

0 comments on commit 699530d

Please sign in to comment.