diff --git a/gms/pom.xml b/gms/pom.xml index 20b7d26ae2d4b71cfb5c21a290783c9ec9453fa1..a67189db22dfa75e5041e23d47ceb30de2404e99 100644 --- a/gms/pom.xml +++ b/gms/pom.xml @@ -143,17 +143,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>com.spotify</groupId> - <artifactId>dockerfile-maven-plugin</artifactId> - <version>1.4.10</version> - <configuration> - <repository>${project.artifactId}</repository> - <buildArgs> - <JAR_FILE>${project.build.finalName}.jar</JAR_FILE> - </buildArgs> - </configuration> - </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java index 0dd5c8683c38df4080a8f922738ffdeb2d11a59a..afe1ec2cbc1e09f55b9811d6fab9a7ed0efcf952 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java @@ -140,7 +140,7 @@ public class JWTWebServiceController { // else: empty response (as defined by GMS standard) } - @GetMapping(value = {"/ws/jwt/list/{group:.+}", "/ws/jwt/list", "/list"}, produces = MediaType.TEXT_PLAIN_VALUE) + @GetMapping(value = {"/ws/jwt/list/{group:.+}", "/ws/jwt/list", "/list", "/list/{group:.+}"}, produces = MediaType.TEXT_PLAIN_VALUE) public void listGroups(@PathVariable("group") Optional<String> groupNames, @RequestParam(value = "recursive", defaultValue = "false") boolean recursive, Principal principal, HttpServletResponse response) throws IOException {