Frontend: Add notification persistence behind feature flag (#47871)

This commit is contained in:
kay delaney
2022-04-20 10:42:32 +01:00
committed by GitHub
parent be3f52abb1
commit c48d8d1d48
21 changed files with 529 additions and 80 deletions

View File

@@ -213,5 +213,11 @@ var (
State: FeatureStateBeta,
FrontendOnly: true,
},
{
Name: "persistNotifications",
Description: "PoC Notifications page",
State: FeatureStateAlpha,
FrontendOnly: true,
},
}
)

View File

@@ -158,4 +158,8 @@ const (
// FlagExplore2Dashboard
// Experimental Explore to Dashboard workflow
FlagExplore2Dashboard = "explore2Dashboard"
// FlagPersistNotifications
// PoC Notifications page
FlagPersistNotifications = "persistNotifications"
)