mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Change default value of tlsConfigDisableLocalFiles to false
This commit is contained in:
parent
e55933706d
commit
f45a2643f2
@ -156,7 +156,7 @@
|
|||||||
clearNameData("ca");
|
clearNameData("ca");
|
||||||
});
|
});
|
||||||
|
|
||||||
if (RED.settings.tlsConfigDisableLocalFiles) {
|
if (RED.settings.nodeSettings.tlsConfigDisableLocalFiles) {
|
||||||
$("#node-config-row-uselocalfiles").hide();
|
$("#node-config-row-uselocalfiles").hide();
|
||||||
} else {
|
} else {
|
||||||
$("#node-config-row-uselocalfiles").show();
|
$("#node-config-row-uselocalfiles").show();
|
||||||
|
@ -81,7 +81,7 @@ module.exports = function(RED) {
|
|||||||
},
|
},
|
||||||
settings: {
|
settings: {
|
||||||
tlsConfigDisableLocalFiles: {
|
tlsConfigDisableLocalFiles: {
|
||||||
value: true,
|
value: false,
|
||||||
exportable: false
|
exportable: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user