Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#495 added exclude system and system version…
Browse files Browse the repository at this point in the history
… in expand parameters definition
  • Loading branch information
Harsh Patel committed Dec 7, 2020
1 parent 42d2524 commit 8e596e7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,9 @@ public ValueSet expand(Collection collection, IntegerType offset, IntegerType co
if (isValid(displayLanguage))
addParameter(expansion, DISPLAY_LANGUAGE, displayLanguage);
if (isValid(filter))
addParameter(expansion, "filter", filter);
addParameter(expansion, FILTER, filter);
excludeSystem.forEach(e -> addParameter(expansion, EXCLUDE_SYSTEM, newStringType(e)));
systemVersion.forEach(e -> addParameter(expansion, SYSTEMVERSION, newStringType(e)));

// offset
expansion.setOffset(offset.getValue());
Expand Down

0 comments on commit 8e596e7

Please sign in to comment.