1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-19 01:17:18 +02: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, "enableLicenseChecker": false,
"encryptEmails": false, "encryptEmails": false,
"estimateTrafficDataCost": false, "estimateTrafficDataCost": false,
"executiveDashboard": false,
"executiveDashboardUI": false, "executiveDashboardUI": false,
"extendedUsageMetrics": false, "extendedUsageMetrics": false,
"featureLifecycle": false, "featureLifecycle": false,

View File

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

View File

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