Skip to content

Commit a133fc0

Browse files
Merge pull request #60 from MeasureAuthoringTool/feature/mat-10208-serve-persisted-export
MAT-10208: Serve the persisted export when requested for versioned composite measures.
2 parents 2d79f80 + 5a9d725 commit a133fc0

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>gov.cms.madie.packaging</groupId>
88
<artifactId>packaging-utility</artifactId>
9-
<version>0.2.17-SNAPSHOT</version>
9+
<version>0.2.18-SNAPSHOT</version>
1010

1111
<name>packaging-utility</name>
1212
<description>A simple packaging-utility.</description>

src/main/java/gov/cms/madie/packaging/utils/qicore411/PackagingUtilityImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ public PackagingUtilityImpl() {
3939
public byte[] getZipBundle(Object o, String exportFileName) throws InternalServerException {
4040
if (o instanceof Export export) {
4141
Bundle bundle = parseBundle(export.getMeasureBundleJson());
42-
return getZipBundle(bundle, exportFileName, export.getHumanReadable(), null);
42+
return getZipBundle(
43+
bundle, exportFileName, export.getHumanReadable(), export.getComponentHumanReadables());
4344
}
4445

4546
if (o instanceof Bundle bundle) {

0 commit comments

Comments
 (0)