mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-31 13:47:02 +02:00
fix: missing flags (#4214)
This commit is contained in:
parent
58151d8d80
commit
92d43ed4f6
@ -89,11 +89,13 @@ exports[`should create default config 1`] = `
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
"migrationLock": false,
|
"migrationLock": false,
|
||||||
|
"newProjectLayout": false,
|
||||||
"personalAccessTokensKillSwitch": false,
|
"personalAccessTokensKillSwitch": false,
|
||||||
"proPlanAutoCharge": false,
|
"proPlanAutoCharge": false,
|
||||||
"responseTimeWithAppNameKillSwitch": false,
|
"responseTimeWithAppNameKillSwitch": false,
|
||||||
"segmentContextFieldUsage": false,
|
"segmentContextFieldUsage": false,
|
||||||
"strategySplittedButton": false,
|
"strategySplittedButton": false,
|
||||||
|
"strategyVariant": false,
|
||||||
"strictSchemaValidation": false,
|
"strictSchemaValidation": false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -121,11 +123,13 @@ exports[`should create default config 1`] = `
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
"migrationLock": false,
|
"migrationLock": false,
|
||||||
|
"newProjectLayout": false,
|
||||||
"personalAccessTokensKillSwitch": false,
|
"personalAccessTokensKillSwitch": false,
|
||||||
"proPlanAutoCharge": false,
|
"proPlanAutoCharge": false,
|
||||||
"responseTimeWithAppNameKillSwitch": false,
|
"responseTimeWithAppNameKillSwitch": false,
|
||||||
"segmentContextFieldUsage": false,
|
"segmentContextFieldUsage": false,
|
||||||
"strategySplittedButton": false,
|
"strategySplittedButton": false,
|
||||||
|
"strategyVariant": false,
|
||||||
"strictSchemaValidation": false,
|
"strictSchemaValidation": false,
|
||||||
},
|
},
|
||||||
"externalResolver": {
|
"externalResolver": {
|
||||||
|
@ -110,6 +110,14 @@ const flags: IFlags = {
|
|||||||
process.env.UNLEASH_EXPERIMENTAL_CUSTOM_ROOT_ROLES,
|
process.env.UNLEASH_EXPERIMENTAL_CUSTOM_ROOT_ROLES,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
|
newProjectLayout: parseEnvVarBoolean(
|
||||||
|
process.env.UNLEASH_EXPERIMENTAL_NEW_PROJECT_LAYOUT,
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
strategyVariant: parseEnvVarBoolean(
|
||||||
|
process.env.UNLEASH_STRATEGY_VARIANT,
|
||||||
|
false,
|
||||||
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
export const defaultExperimentalOptions: IExperimentalOptions = {
|
export const defaultExperimentalOptions: IExperimentalOptions = {
|
||||||
|
Loading…
Reference in New Issue
Block a user