mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
PublicDashboards: Remove dev mode for share by email toggle (#64330)
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
This commit is contained in:
parent
9b6e531549
commit
1a5ab1b308
@ -59,6 +59,7 @@ Alpha features might be changed or removed without prior notice.
|
|||||||
| `live-service-web-worker` | This will use a webworker thread to processes events rather than the main thread |
|
| `live-service-web-worker` | This will use a webworker thread to processes events rather than the main thread |
|
||||||
| `queryOverLive` | Use Grafana Live WebSocket to execute backend queries |
|
| `queryOverLive` | Use Grafana Live WebSocket to execute backend queries |
|
||||||
| `publicDashboards` | Enables public access to dashboards |
|
| `publicDashboards` | Enables public access to dashboards |
|
||||||
|
| `publicDashboardsEmailSharing` | Enables public dashboard sharing to be restricted to only allowed emails |
|
||||||
| `lokiLive` | Support WebSocket streaming for loki (early prototype) |
|
| `lokiLive` | Support WebSocket streaming for loki (early prototype) |
|
||||||
| `lokiDataframeApi` | Use experimental loki api for WebSocket streaming (early prototype) |
|
| `lokiDataframeApi` | Use experimental loki api for WebSocket streaming (early prototype) |
|
||||||
| `dashboardComments` | Enable dashboard-wide comments |
|
| `dashboardComments` | Enable dashboard-wide comments |
|
||||||
@ -98,12 +99,11 @@ Alpha features might be changed or removed without prior notice.
|
|||||||
|
|
||||||
The following toggles require explicitly setting Grafana's [app mode]({{< relref "../_index.md/#app_mode" >}}) to 'development' before you can enable this feature toggle. These features tend to be experimental.
|
The following toggles require explicitly setting Grafana's [app mode]({{< relref "../_index.md/#app_mode" >}}) to 'development' before you can enable this feature toggle. These features tend to be experimental.
|
||||||
|
|
||||||
| Feature toggle name | Description |
|
| Feature toggle name | Description |
|
||||||
| ------------------------------ | ----------------------------------------------------------------------- |
|
| ----------------------- | --------------------------------------------------- |
|
||||||
| `publicDashboardsEmailSharing` | Allows public dashboard sharing to be restricted to only allowed emails |
|
| `k8s` | Explore native k8s integrations |
|
||||||
| `k8s` | Explore native k8s integrations |
|
| `dashboardsFromStorage` | Load dashboards from the generic storage interface |
|
||||||
| `dashboardsFromStorage` | Load dashboards from the generic storage interface |
|
| `grpcServer` | Run GRPC server |
|
||||||
| `grpcServer` | Run GRPC server |
|
| `entityStore` | SQL-based entity store (requires storage flag also) |
|
||||||
| `entityStore` | SQL-based entity store (requires storage flag also) |
|
| `queryLibrary` | Reusable query library |
|
||||||
| `queryLibrary` | Reusable query library |
|
| `nestedFolders` | Enable folder nesting |
|
||||||
| `nestedFolders` | Enable folder nesting |
|
|
||||||
|
@ -74,10 +74,9 @@ var (
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "publicDashboardsEmailSharing",
|
Name: "publicDashboardsEmailSharing",
|
||||||
Description: "Allows public dashboard sharing to be restricted to only allowed emails",
|
Description: "Enables public dashboard sharing to be restricted to only allowed emails",
|
||||||
State: FeatureStateAlpha,
|
State: FeatureStateAlpha,
|
||||||
RequiresLicense: true,
|
RequiresLicense: true,
|
||||||
RequiresDevMode: true,
|
|
||||||
Owner: grafanaDashboardsSquad,
|
Owner: grafanaDashboardsSquad,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -52,7 +52,7 @@ const (
|
|||||||
FlagPublicDashboards = "publicDashboards"
|
FlagPublicDashboards = "publicDashboards"
|
||||||
|
|
||||||
// FlagPublicDashboardsEmailSharing
|
// FlagPublicDashboardsEmailSharing
|
||||||
// Allows public dashboard sharing to be restricted to only allowed emails
|
// Enables public dashboard sharing to be restricted to only allowed emails
|
||||||
FlagPublicDashboardsEmailSharing = "publicDashboardsEmailSharing"
|
FlagPublicDashboardsEmailSharing = "publicDashboardsEmailSharing"
|
||||||
|
|
||||||
// FlagLokiLive
|
// FlagLokiLive
|
||||||
|
Loading…
Reference in New Issue
Block a user