Config: add meta feature toggle (#21786)

This commit is contained in:
Emil Tullstedt
2020-01-28 12:00:07 +01:00
committed by GitHub
parent b3bcbcccce
commit e95bcc4ba2

View File

@@ -17,6 +17,7 @@ interface FeatureToggles {
inspect: boolean;
expressions: boolean;
newEdit: boolean;
meta: boolean;
}
interface LicenseInfo {
@@ -63,6 +64,7 @@ export class GrafanaBootConfig {
inspect: false,
expressions: false,
newEdit: false,
meta: false,
};
licenseInfo: LicenseInfo = {} as LicenseInfo;