Merge pull request #2840 from ether/applySettings
allow settings to be applied from the filesystempull/2841/head
commit
a913f57994
|
@ -74,6 +74,15 @@ async.waterfall([
|
|||
// Call loadSettings hook
|
||||
hooks.aCallAll("loadSettings", { settings: settings });
|
||||
|
||||
// Call applySettings hook
|
||||
hooks.aCallAll("applySettings", settings, function(err, newSettings){
|
||||
if(!newSettings) return;
|
||||
newSettings.forEach(function (settingsBlob){
|
||||
for (var setting in settingsBlob){
|
||||
settings[setting] = settingsBlob[setting];
|
||||
};
|
||||
});
|
||||
});
|
||||
callback();
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue