Add a feature toggle for custom branding (#51168)

This commit is contained in:
Tania 2022-06-22 17:05:52 +02:00 committed by GitHub
parent 4d2c293575
commit 405df77e3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -63,4 +63,5 @@ export interface FeatureToggles {
dataConnectionsConsole?: boolean;
internationalization?: boolean;
topnav?: boolean;
customBranding?: boolean;
}

View File

@ -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,
},
}
)

View File

@ -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"
)