Skip to content

Commit 9334582

Browse files
RBAC: move RBAC + OnCall feature toggle to beta state (grafana#60991)
* move RBAC + OnCall feature toggle to beta state * move accessControlOnCall to the correct section in the docs
1 parent 0e26524 commit 9334582

File tree

2 files changed

+4
-5
lines changed
  • docs/sources/setup-grafana/configure-grafana/feature-toggles
  • pkg/services/featuremgmt

2 files changed

+4
-5
lines changed

docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Some stable features are enabled by default. You can disable a stable feature by
4444
| `validateDashboardsOnSave` | Validate dashboard JSON POSTed to api/dashboards/db |
4545
| `autoMigrateGraphPanels` | Replace the angular graph panel with timeseries |
4646
| `datasourceLogger` | Logs all datasource requests |
47+
| `accessControlOnCall` | Access control primitives for OnCall |
4748

4849
## Alpha feature toggles
4950

@@ -111,5 +112,4 @@ The following toggles require explicitly setting Grafana's [app mode]({{< relref
111112
| `grpcServer` | Run GRPC server |
112113
| `entityStore` | SQL-based entity store (requires storage flag also) |
113114
| `queryLibrary` | Reusable query library |
114-
| `accessControlOnCall` | Access control primitives for OnCall |
115115
| `nestedFolders` | Enable folder nesting |

pkg/services/featuremgmt/registry.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,9 @@ var (
353353
State: FeatureStateBeta,
354354
},
355355
{
356-
Name: "accessControlOnCall",
357-
Description: "Access control primitives for OnCall",
358-
State: FeatureStateAlpha,
359-
RequiresDevMode: true,
356+
Name: "accessControlOnCall",
357+
Description: "Access control primitives for OnCall",
358+
State: FeatureStateBeta,
360359
},
361360
{
362361
Name: "nestedFolders",

0 commit comments

Comments
 (0)