mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -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;
|
dataConnectionsConsole?: boolean;
|
||||||
internationalization?: boolean;
|
internationalization?: boolean;
|
||||||
topnav?: boolean;
|
topnav?: boolean;
|
||||||
|
customBranding?: boolean;
|
||||||
}
|
}
|
||||||
|
@ -263,5 +263,10 @@ var (
|
|||||||
Description: "New top nav and page layouts",
|
Description: "New top nav and page layouts",
|
||||||
State: FeatureStateAlpha,
|
State: FeatureStateAlpha,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "customBranding",
|
||||||
|
Description: "Replaces whitelabeling with the new custom branding feature",
|
||||||
|
State: FeatureStateAlpha,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -194,4 +194,8 @@ const (
|
|||||||
// FlagTopnav
|
// FlagTopnav
|
||||||
// New top nav and page layouts
|
// New top nav and page layouts
|
||||||
FlagTopnav = "topnav"
|
FlagTopnav = "topnav"
|
||||||
|
|
||||||
|
// FlagCustomBranding
|
||||||
|
// Replaces whitelabeling with the new custom branding feature
|
||||||
|
FlagCustomBranding = "customBranding"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user