mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Add a function to append/overwrite objects in the config on the fly
Intended to be used to overwrite settings which may be calculated rather than provided.
This commit is contained in:
parent
f6154bc7cd
commit
a11cf88e07
1 changed files with 6 additions and 0 deletions
|
@ -41,6 +41,12 @@ class SdkConfig {
|
|||
static unset() {
|
||||
global.mxReactSdkConfig = undefined;
|
||||
}
|
||||
|
||||
static add(cfg) {
|
||||
const liveConfig = SdkConfig.get();
|
||||
const newConfig = Object.assign({}, liveConfig, cfg);
|
||||
SdkConfig.put(newConfig);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = SdkConfig;
|
||||
|
|
Loading…
Reference in a new issue