Skip to content

Commit

Permalink
[Gitar] Cleaning up stale feature flag: executiveDashboard with value…
Browse files Browse the repository at this point in the history
… 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 <[email protected]>
  • Loading branch information
gitar-bot[bot] and Gitar Bot authored May 27, 2024
1 parent faefbc5 commit 6e8e807
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/lib/__snapshots__/create-config.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ exports[`should create default config 1`] = `
"enableLicenseChecker": false,
"encryptEmails": false,
"estimateTrafficDataCost": false,
"executiveDashboard": false,
"executiveDashboardUI": false,
"extendedUsageMetrics": false,
"featureLifecycle": false,
Expand Down
5 changes: 0 additions & 5 deletions src/lib/types/experimental.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export type IFlagKey =
| 'edgeBulkMetrics'
| 'extendedUsageMetrics'
| 'adminTokenKillSwitch'
| 'executiveDashboard'
| 'executiveDashboardUI'
| 'feedbackComments'
| 'showInactiveUsers'
Expand Down Expand Up @@ -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,
Expand Down
1 change: 0 additions & 1 deletion src/server-dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ process.nextTick(async () => {
stripHeadersOnAPI: true,
celebrateUnleash: true,
featureSearchFeedbackPosting: true,
executiveDashboard: true,
executiveDashboardUI: true,
userAccessUIEnabled: true,
outdatedSdksBanner: true,
Expand Down

0 comments on commit 6e8e807

Please sign in to comment.