- fixed issue on ui regarding pagination of results by configuring refuseToFetchThirdPartyUrls

- updated fhir version to R4 and used mysql as datasource with docs updated
- transferred jetty plugin to be viewable on intellij
- disabled oss snapshots
- replaced corsFilter based on new hapi docs
This commit is contained in:
Jessie James Cosare
2019-03-08 13:22:25 +08:00
parent 6907ae34ba
commit c5bfade9ce
7 changed files with 119 additions and 89 deletions

View File

@@ -43,6 +43,7 @@ public class FhirTesterConfig {
.withFhirVersion(HapiProperties.getFhirVersion())
.withBaseUrl(HapiProperties.getServerAddress())
.withName(HapiProperties.getServerName());
retVal.setRefuseToFetchThirdPartyUrls(HapiProperties.getTesterConfigRefustToFetchThirdPartyUrls());
return retVal;
}