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:
parent
faefbc5f3a
commit
6e8e807e44
@ -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,
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user