mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
FeatureFlags: define features outside settings.Cfg (take 3) (#44443)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user