mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
Add a feature toggle for custom branding (#51168)
This commit is contained in:
parent
4d2c293575
commit
405df77e3e
@ -63,4 +63,5 @@ export interface FeatureToggles {
|
||||
dataConnectionsConsole?: boolean;
|
||||
internationalization?: boolean;
|
||||
topnav?: boolean;
|
||||
customBranding?: boolean;
|
||||
}
|
||||
|
@ -263,5 +263,10 @@ var (
|
||||
Description: "New top nav and page layouts",
|
||||
State: FeatureStateAlpha,
|
||||
},
|
||||
{
|
||||
Name: "customBranding",
|
||||
Description: "Replaces whitelabeling with the new custom branding feature",
|
||||
State: FeatureStateAlpha,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -194,4 +194,8 @@ const (
|
||||
// FlagTopnav
|
||||
// New top nav and page layouts
|
||||
FlagTopnav = "topnav"
|
||||
|
||||
// FlagCustomBranding
|
||||
// Replaces whitelabeling with the new custom branding feature
|
||||
FlagCustomBranding = "customBranding"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user