mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
chore: add a flag for scim (#6361)
This commit is contained in:
parent
6cefe71534
commit
43b013ff2f
@ -134,6 +134,7 @@ exports[`should create default config 1`] = `
|
||||
"proPlanAutoCharge": false,
|
||||
"responseTimeWithAppNameKillSwitch": false,
|
||||
"scheduledConfigurationChanges": false,
|
||||
"scimApi": false,
|
||||
"sdkReporting": false,
|
||||
"showInactiveUsers": false,
|
||||
"strictSchemaValidation": false,
|
||||
|
@ -51,7 +51,8 @@ export type IFlagKey =
|
||||
| 'userAccessUIEnabled'
|
||||
| 'disableUpdateMaxRevisionId'
|
||||
| 'disablePublishUnannouncedEvents'
|
||||
| 'sdkReporting';
|
||||
| 'sdkReporting'
|
||||
| 'scimApi';
|
||||
|
||||
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
||||
|
||||
@ -252,6 +253,10 @@ const flags: IFlags = {
|
||||
process.env.UNLEASH_EXPERIMENTAL_DISABLE_SCHEDULED_CACHES,
|
||||
false,
|
||||
),
|
||||
scimApi: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_SCIM_API,
|
||||
false,
|
||||
),
|
||||
};
|
||||
|
||||
export const defaultExperimentalOptions: IExperimentalOptions = {
|
||||
|
Loading…
Reference in New Issue
Block a user