Commit e95bcc4b by Emil Tullstedt Committed by GitHub

Config: add meta feature toggle (#21786)

parent b3bcbccc
...@@ -17,6 +17,7 @@ interface FeatureToggles { ...@@ -17,6 +17,7 @@ interface FeatureToggles {
inspect: boolean; inspect: boolean;
expressions: boolean; expressions: boolean;
newEdit: boolean; newEdit: boolean;
meta: boolean;
} }
interface LicenseInfo { interface LicenseInfo {
...@@ -63,6 +64,7 @@ export class GrafanaBootConfig { ...@@ -63,6 +64,7 @@ export class GrafanaBootConfig {
inspect: false, inspect: false,
expressions: false, expressions: false,
newEdit: false, newEdit: false,
meta: false,
}; };
licenseInfo: LicenseInfo = {} as LicenseInfo; licenseInfo: LicenseInfo = {} as LicenseInfo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment