Feature Toggle Management: allow editing PublicPreview toggles (#81562)

* Feature Toggle Management: allow editing PublicPreview toggles

* lint

* fix a bunch of tests

* tests are passing

* add permissions unit tests back

* fix display

* close dialog after submit

* use reload method after submit

* make local development easier

* always show editing alert in the UI

* fix readme

---------

Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
This commit is contained in:
João Calisto
2024-02-09 17:48:56 +01:00
committed by GitHub
parent f60b5ecec4
commit 42d6e176bc
11 changed files with 587 additions and 22 deletions
+3
View File
@@ -98,6 +98,9 @@ type ToggleStatus struct {
// The flag description
Description string `json:"description,omitempty"`
// The feature toggle stage
Stage string `json:"stage"`
// Is the flag enabled
Enabled bool `json:"enabled"`