Merge branch 'master' into cr-6.9.6-snapshot
This commit is contained in:
@@ -76,6 +76,18 @@ public class AppProperties {
|
||||
private Boolean reload_existing_implementationguides = false;
|
||||
private Map<String, PackageInstallationSpec> implementationGuides = null;
|
||||
private Boolean cr_enabled = false;
|
||||
|
||||
private Boolean ig_runtime_upload_enabled = false;
|
||||
|
||||
private Validation validation = new Validation();
|
||||
private Map<String, Tester> tester = null;
|
||||
private Logger logger = new Logger();
|
||||
private Subscription subscription = new Subscription();
|
||||
private Cors cors = null;
|
||||
private Partitioning partitioning = null;
|
||||
private Boolean install_transitive_ig_dependencies = true;
|
||||
private Map<String, PackageInstallationSpec> implementationGuides = null;
|
||||
|
||||
private String staticLocation = null;
|
||||
private String staticLocationPrefix = "/static";
|
||||
private Boolean lastn_enabled = false;
|
||||
@@ -579,6 +591,14 @@ public class AppProperties {
|
||||
return local_base_urls;
|
||||
}
|
||||
|
||||
public Boolean getIg_runtime_upload_enabled() {
|
||||
return ig_runtime_upload_enabled;
|
||||
}
|
||||
|
||||
public void setIg_runtime_upload_enabled(Boolean ig_runtime_upload_enabled) {
|
||||
this.ig_runtime_upload_enabled = ig_runtime_upload_enabled;
|
||||
}
|
||||
|
||||
public static class Cors {
|
||||
private Boolean allow_Credentials = true;
|
||||
private List<String> allowed_origin = List.of("*");
|
||||
|
||||
Reference in New Issue
Block a user