Skip to content

Commit

Permalink
fix(mrcm): Update endpoint names
Browse files Browse the repository at this point in the history
  • Loading branch information
AAAlinaaa authored Dec 7, 2022
1 parent ab252c7 commit 666fe2a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class SnomedMrcmRestService extends AbstractRestService {
@ApiResponse(responseCode = "400", description = "Bad Request"),
@ApiResponse(responseCode = "404", description = "Not found"),
})
@GetMapping(value = "/{path:**}/mrcm/attribute/domains", produces = { AbstractRestService.JSON_MEDIA_TYPE })
@GetMapping(value = "/{path:**}/mrcm/types", produces = { AbstractRestService.JSON_MEDIA_TYPE })
public @ResponseBody Promise<SnomedReferenceSetMembers> getApplicableTypes(
@Parameter(description = "The resource path", required = true)
@PathVariable(name ="path")
Expand Down Expand Up @@ -102,7 +102,7 @@ public class SnomedMrcmRestService extends AbstractRestService {
@ApiResponse(responseCode = "400", description = "Bad Request"),
@ApiResponse(responseCode = "404", description = "Not found"),
})
@GetMapping(value = "/{path:**}/mrcm/attribute/ranges", produces = { AbstractRestService.JSON_MEDIA_TYPE })
@GetMapping(value = "/{path:**}/mrcm/ranges", produces = { AbstractRestService.JSON_MEDIA_TYPE })
public @ResponseBody Promise<SnomedReferenceSetMembers> getApplicableRanges(
@Parameter(description = "The resource path", required = true)
@PathVariable(name ="path")
Expand Down

0 comments on commit 666fe2a

Please sign in to comment.