Skip to content

Commit

Permalink
minor API path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YannanGao-gs committed Sep 23, 2024
1 parent 56e4ee5 commit 3f66c9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public Response getEntitiesFromDependencies(@PathParam("groupId") String groupId
}

@GET
@Path("/projects/{groupId}/{artifactId}/versions/{versionId}/classifier/{classifier}/dependencies")
@Path("/projects/{groupId}/{artifactId}/versions/{versionId}/classifiers/{classifier}/dependencies")
@ApiOperation(value = GET_VERSION_DEPENDENCY_ENTITIES, hidden = true)
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Response getEntities(@PathParam("groupId") String groupId,
}

@GET
@Path("/projects/{groupId}/{artifactId}/versions/{versionId}/classifier/{classifier}")
@Path("/projects/{groupId}/{artifactId}/versions/{versionId}/classifiers/{classifier}")
@ApiOperation(value = GET_VERSION_ENTITIES, hidden = true)
@Produces(MediaType.APPLICATION_JSON)
public Response getEntitiesByClassifier(@PathParam("groupId") String groupId,
Expand Down

0 comments on commit 3f66c9f

Please sign in to comment.