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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;