Adding logging related to CORS configuration
Removing unused `allow_placeholder_references` property that causes confusion with `auto_create_placeholder_references` Improving `.dockerignore` so that it ignores specific target files/directories that are generated by MVN/java, but not the .war file (so that compiled .war files can be easily turned into a docker image)
This commit is contained in:
@@ -28,7 +28,6 @@ public class AppProperties {
|
||||
private Boolean allow_external_references = false;
|
||||
private Boolean allow_multiple_delete = false;
|
||||
private Boolean allow_override_default_search_params = true;
|
||||
private Boolean allow_placeholder_references = true;
|
||||
private Boolean auto_create_placeholder_reference_targets = false;
|
||||
private Boolean enable_index_missing_fields = false;
|
||||
private Boolean enable_repository_validating_interceptor = false;
|
||||
@@ -240,14 +239,6 @@ public class AppProperties {
|
||||
this.allow_override_default_search_params = allow_override_default_search_params;
|
||||
}
|
||||
|
||||
public Boolean getAllow_placeholder_references() {
|
||||
return allow_placeholder_references;
|
||||
}
|
||||
|
||||
public void setAllow_placeholder_references(Boolean allow_placeholder_references) {
|
||||
this.allow_placeholder_references = allow_placeholder_references;
|
||||
}
|
||||
|
||||
public Boolean getAuto_create_placeholder_reference_targets() {
|
||||
return auto_create_placeholder_reference_targets;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user