Config: remove unused Enterprise feature toggles (#36527)

This commit is contained in:
Agnès Toulet 2021-07-09 15:12:26 +02:00 committed by GitHub
parent ea2ba06b93
commit 19fbfc8d24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 9 deletions

View File

@ -47,13 +47,6 @@ export interface FeatureToggles {
ngalert: boolean;
trimDefaults: boolean;
accesscontrol: boolean;
/**
* @remarks
* Available only in Grafana Enterprise
*/
meta: boolean;
reportVariables: boolean;
}
/**

View File

@ -59,9 +59,7 @@ export class GrafanaBootConfig implements GrafanaConfig {
theme2: GrafanaTheme2;
pluginsToPreload: string[] = [];
featureToggles: FeatureToggles = {
meta: false,
ngalert: false,
reportVariables: false,
accesscontrol: false,
trimDefaults: false,
};