mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
ReturnToPrevious: create feature toggle (#80831)
This commit is contained in:
parent
2cdf73f584
commit
5800e40fba
@ -107,6 +107,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `disableSecretsCompatibility` | Disable duplicated secret storage in legacy tables |
|
||||
| `logRequestsInstrumentedAsUnknown` | Logs the path for requests that are instrumented as unknown |
|
||||
| `dockedMegaMenu` | Enable support for a persistent (docked) navigation menu |
|
||||
| `returnToPrevious` | Enables the return to previous context functionality |
|
||||
| `showDashboardValidationWarnings` | Show warnings when dashboards do not validate against the schema |
|
||||
| `mysqlAnsiQuotes` | Use double quotes to escape keyword in a MySQL query |
|
||||
| `alertingBacktesting` | Rule backtesting API for alerting |
|
||||
|
@ -42,6 +42,7 @@ export interface FeatureToggles {
|
||||
dataConnectionsConsole?: boolean;
|
||||
topnav?: boolean;
|
||||
dockedMegaMenu?: boolean;
|
||||
returnToPrevious?: boolean;
|
||||
grpcServer?: boolean;
|
||||
unifiedStorage?: boolean;
|
||||
cloudWatchCrossAccountQuerying?: boolean;
|
||||
|
@ -211,6 +211,14 @@ var (
|
||||
Owner: grafanaFrontendPlatformSquad,
|
||||
Created: time.Date(2023, time.September, 18, 12, 0, 0, 0, time.UTC),
|
||||
},
|
||||
{
|
||||
Name: "returnToPrevious",
|
||||
Description: "Enables the return to previous context functionality",
|
||||
Stage: FeatureStageExperimental,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaFrontendPlatformSquad,
|
||||
Created: time.Date(2024, time.January, 9, 11, 0, 0, 0, time.UTC),
|
||||
},
|
||||
{
|
||||
Name: "grpcServer",
|
||||
Description: "Run the GRPC server",
|
||||
|
@ -23,6 +23,7 @@ logRequestsInstrumentedAsUnknown,experimental,@grafana/hosted-grafana-team,2022-
|
||||
dataConnectionsConsole,GA,@grafana/plugins-platform-backend,2022-06-01,false,false,false,false
|
||||
topnav,deprecated,@grafana/grafana-frontend-platform,2022-06-20,false,false,false,false
|
||||
dockedMegaMenu,experimental,@grafana/grafana-frontend-platform,2023-09-18,false,false,false,true
|
||||
returnToPrevious,experimental,@grafana/grafana-frontend-platform,2024-01-09,false,false,false,true
|
||||
grpcServer,preview,@grafana/grafana-app-platform-squad,2022-09-27,false,false,false,false
|
||||
unifiedStorage,experimental,@grafana/grafana-app-platform-squad,2022-12-01,true,false,true,false
|
||||
cloudWatchCrossAccountQuerying,GA,@grafana/aws-datasources,2022-11-28,false,false,false,false
|
||||
|
|
@ -103,6 +103,10 @@ const (
|
||||
// Enable support for a persistent (docked) navigation menu
|
||||
FlagDockedMegaMenu = "dockedMegaMenu"
|
||||
|
||||
// FlagReturnToPrevious
|
||||
// Enables the return to previous context functionality
|
||||
FlagReturnToPrevious = "returnToPrevious"
|
||||
|
||||
// FlagGrpcServer
|
||||
// Run the GRPC server
|
||||
FlagGrpcServer = "grpcServer"
|
||||
|
Loading…
Reference in New Issue
Block a user