1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-18 13:48:58 +02:00

chore: Lifecycle graphs flag (#10390)

This commit is contained in:
Mateusz Kwasniewski 2025-07-22 14:34:27 +02:00 committed by GitHub
parent 020e9a49ef
commit d7f98945a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -65,7 +65,8 @@ export type IFlagKey =
| 'changeRequestApproverEmails'
| 'paygTrialEvents'
| 'eventGrouping'
| 'paygInstanceStatsEvents';
| 'paygInstanceStatsEvents'
| 'lifecycleGraphs';
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
@ -302,6 +303,10 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_PAYG_INSTANCE_STATS_EVENTS,
false,
),
lifecycleGraphs: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_LIFECYCLE_GRAPHS,
false,
),
};
export const defaultExperimentalOptions: IExperimentalOptions = {

View File

@ -59,6 +59,7 @@ process.nextTick(async () => {
crDiffView: true,
eventGrouping: true,
paygTrialEvents: true,
lifecycleGraphs: true,
},
},
authentication: {