1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

[Gitar] Cleaning up stale feature flag: executiveDashboard with value true (#7158)

We are keeping the UI hidden for mdsol behind kill switch, but I feel
like we can remove the flag completely for backend, so everyone will
keep collecting data.

Co-authored-by: Gitar Bot <noreply@gitar.co>
This commit is contained in:
gitar-bot[bot] 2024-05-27 14:21:44 +03:00 committed by GitHub
parent faefbc5f3a
commit 6e8e807e44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 7 deletions

View File

@ -100,7 +100,6 @@ exports[`should create default config 1`] = `
"enableLicenseChecker": false,
"encryptEmails": false,
"estimateTrafficDataCost": false,
"executiveDashboard": false,
"executiveDashboardUI": false,
"extendedUsageMetrics": false,
"featureLifecycle": false,

View File

@ -34,7 +34,6 @@ export type IFlagKey =
| 'edgeBulkMetrics'
| 'extendedUsageMetrics'
| 'adminTokenKillSwitch'
| 'executiveDashboard'
| 'executiveDashboardUI'
| 'feedbackComments'
| 'showInactiveUsers'
@ -183,10 +182,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_ADMIN_TOKEN_KILL_SWITCH,
false,
),
executiveDashboard: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_EXECUTIVE_DASHBOARD,
false,
),
executiveDashboardUI: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_EXECUTIVE_DASHBOARD_UI,
false,

View File

@ -43,7 +43,6 @@ process.nextTick(async () => {
stripHeadersOnAPI: true,
celebrateUnleash: true,
featureSearchFeedbackPosting: true,
executiveDashboard: true,
executiveDashboardUI: true,
userAccessUIEnabled: true,
outdatedSdksBanner: true,