mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 18:14:26 +00:00
webui.submit.upload.required should default to true
This commit is contained in:
@@ -53,7 +53,8 @@ public class UploadConfiguration {
|
|||||||
|
|
||||||
public Boolean isRequired() {
|
public Boolean isRequired() {
|
||||||
if (required == null) {
|
if (required == null) {
|
||||||
required = configurationService.getBooleanProperty("webui.submit.upload.required");
|
//defaults to true
|
||||||
|
required = configurationService.getBooleanProperty("webui.submit.upload.required", true);
|
||||||
}
|
}
|
||||||
return required;
|
return required;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user