add plugId property

Signed-off-by: Kurt King <kurtaking@gmail.com>
This commit is contained in:
Kurt King
2023-03-09 16:18:32 -07:00
parent cd5cf69a61
commit 88da0bcff2
+6 -1
View File
@@ -37,7 +37,12 @@ Defining feature flag in the application is done by adding feature flags in`feat
const app = createApp({
// ...
featureFlags: [
{ name: 'tech-radar', description: 'Enables the tech radar plugin' },
// pluginId can be left empty for feature flags used in the application. It is required for feature flags used in plugins
{
pluginId: '',
name: 'tech-radar',
description: 'Enables the tech radar plugin',
},
],
// ...
});