Skip to content

Commit

Permalink
Merge pull request #480 from YannanGao-gs/fix
Browse files Browse the repository at this point in the history
minor API path fix
  • Loading branch information
Yasirmod17 authored Sep 23, 2024
2 parents 56e4ee5 + 3f66c9f commit d2107fc
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 d2107fc

Please sign in to comment.