swagger: fixed basepath for apis

This commit is contained in:
Michele Artini 2022-09-01 08:57:26 +02:00
parent 9890f71491
commit fd0eeb170b
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public class BrokerPublicApplication extends AbstractDnetApp {
public GroupedOpenApi publicApi() {
return GroupedOpenApi.builder()
.group("Broker Public APIs")
.pathsToMatch("/")
.pathsToMatch("/**")
.build();
}