Added support for $lastn operation and fixed Elasticsearch indexing.

This commit is contained in:
ianmarshall
2020-12-04 15:50:43 -05:00
parent 329a7f3293
commit 2e2bdaed67
9 changed files with 272 additions and 0 deletions

View File

@@ -360,6 +360,12 @@ public class BaseJpaRestfulServer extends RestfulServer {
.setInstallMode(PackageInstallationSpec.InstallModeEnum.STORE_AND_INSTALL));
}
}
if (appProperties.getLastn_enabled()) {
daoConfig.setLastNEnabled(true);
}
}