Feat/ig install (#601)
* Added IG operation providers for run time installation of IG's * Refactored conditions for enabling the provider * Refactoring * Disable it by default in config as well * document package install feature --------- Co-authored-by: Jose Costa Teixeira <jose.a.teixeira@gmail.com>
This commit is contained in:
committed by
GitHub
parent
b0ae4f292d
commit
1f7d25c5e5
@@ -67,6 +67,8 @@ public class AppProperties {
|
||||
private List<Bundle.BundleType> allowed_bundle_types = null;
|
||||
private Boolean narrative_enabled = true;
|
||||
|
||||
private Boolean ig_runtime_upload_enabled = false;
|
||||
|
||||
private Validation validation = new Validation();
|
||||
private Map<String, Tester> tester = null;
|
||||
private Logger logger = new Logger();
|
||||
@@ -584,6 +586,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