Add loadSettings hook.

pull/903/head
Marcel Klehr 2012-07-25 10:58:30 +02:00
parent c9e8f7e7af
commit de907cd0db
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,10 @@ async.waterfall([
console.info("Installed plugins: " + plugins.formatPlugins());
console.debug("Installed parts:\n" + plugins.formatParts());
console.debug("Installed hooks:\n" + plugins.formatHooks());
// Call loadSettings hook
hooks.aCallAll("loadSettings", { settings: settings });
callback();
},