add public dashboards feature flag (#47364)

This commit is contained in:
Jeff Levin
2022-04-07 10:30:19 -08:00
committed by GitHub
parent c3ad36ba72
commit 4a4d87dbdc
3 changed files with 11 additions and 0 deletions
+6
View File
@@ -143,6 +143,12 @@ var (
State: FeatureStateAlpha,
RequiresDevMode: true,
},
{
Name: "publicDashboards",
Description: "enables public access to dashboards",
State: FeatureStateAlpha,
RequiresDevMode: true,
},
{
Name: "lokiLive",
Description: "support websocket streaming for loki (early prototype)",
+4
View File
@@ -107,6 +107,10 @@ const (
// only execute the query saved in a panel
FlagValidatedQueries = "validatedQueries"
// FlagPublicDashboards
// enables public access to dashboards
FlagPublicDashboards = "publicDashboards"
// FlagLokiLive
// support websocket streaming for loki (early prototype)
FlagLokiLive = "lokiLive"