Add reportVariables feature toggle (#31469)

This commit is contained in:
Alex Khomenko 2021-02-26 08:55:08 +02:00 committed by GitHub
parent f451695ea6
commit 119963ada2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,7 @@ export interface FeatureToggles {
* Available only in Grafana Enterprise
*/
meta: boolean;
reportVariables: boolean;
}
/**

View File

@ -56,6 +56,7 @@ export class GrafanaBootConfig implements GrafanaConfig {
meta: false,
ngalert: false,
panelLibrary: false,
reportVariables: false,
};
licenseInfo: LicenseInfo = {} as LicenseInfo;
rendererAvailable = false;