ποΈConfigs
Hooking into config updates
await BB.Hooks.register(
'bluebase.config.beforeSave',
{
handler: (config: { key: string, value: string}) => {
// Do something here
},
}
);Subscribing to Config updates
Last updated