Merge pull request #2840 from ether/applySettings

allow settings to be applied from the filesystem
pull/2841/head
John McLear 2015-11-24 14:03:51 +00:00
commit a913f57994
1 changed files with 12 additions and 3 deletions

View File

@ -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();
},