Add reportVariables feature toggle (#31469)

pull/31498/head
Alex Khomenko 4 years ago committed by GitHub
parent f451695ea6
commit 119963ada2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      packages/grafana-data/src/types/config.ts
  2. 1
      packages/grafana-runtime/src/config.ts

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

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

Loading…
Cancel
Save