FeatureFlags: define features outside settings.Cfg (take 3) (#44443)

This commit is contained in:
Ryan McKinley
2022-01-26 09:44:20 -08:00
committed by GitHub
parent 84a5910e56
commit 5d66194ec5
64 changed files with 1193 additions and 248 deletions

View File

@@ -1,3 +1,9 @@
// NOTE: This file was auto generated. DO NOT EDIT DIRECTLY!
// To change feature flags, edit:
// pkg/services/featuremgmt/registry.go
// Then run tests in:
// pkg/services/featuremgmt/toggles_gen_test.go
/**
* Describes available feature toggles in Grafana. These can be configured via
* conf/custom.ini to enable features under development or not yet available in
@@ -10,13 +16,6 @@
export interface FeatureToggles {
[name: string]: boolean | undefined; // support any string value
recordedQueries?: boolean;
teamsync?: boolean;
ldapsync?: boolean;
caching?: boolean;
dspermissions?: boolean;
analytics?: boolean;
['enterprise.plugins']?: boolean;
trimDefaults?: boolean;
envelopeEncryption?: boolean;
httpclientprovider_azure_auth?: boolean;
@@ -36,4 +35,5 @@ export interface FeatureToggles {
newNavigation?: boolean;
showFeatureFlagsInUI?: boolean;
disable_http_request_histogram?: boolean;
validatedQueries?: boolean;
}