Skip to content

Commit

Permalink
MAT-7310: Append includeDraft=true to FHIR Term requests when Latest …
Browse files Browse the repository at this point in the history
…is selected (manifest is null).
  • Loading branch information
jkotanchik-SB committed Jun 11, 2024
1 parent 37ff2ce commit f68ec44
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ public static URI buildValueSetResourceUri(
} else if (manifestExpansion != null
&& StringUtils.isNotBlank(manifestExpansion.getFullUrl())) {
params.put("manifest", List.of(manifestExpansion.getFullUrl()));
} else if (StringUtils.isNotBlank(includeDraft)) {
params.put("includeDraft", List.of("true"));
}
return UriComponentsBuilder.fromPath(expandValueSetUri).queryParams(params).build().toUri();
}
Expand Down

0 comments on commit f68ec44

Please sign in to comment.