mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-12-16 23:01:00 +01:00
Add plugin-specific sections in settings.json
Settings for specific plugins are written down as below:
{
...
"ep_pluginname": {
"foo":"bar"
}
...
}
This commit is contained in:
parent
2cf46d3964
commit
b0099a4aba
@ -135,7 +135,8 @@ for(var i in settings)
|
|||||||
}
|
}
|
||||||
|
|
||||||
//we know this setting, so we overwrite it
|
//we know this setting, so we overwrite it
|
||||||
if(exports[i] !== undefined)
|
//or it's a settings hash, specific to a plugin
|
||||||
|
if(exports[i] !== undefined || i.indexOf('ep_')==0)
|
||||||
{
|
{
|
||||||
exports[i] = settings[i];
|
exports[i] = settings[i];
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user