1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-26 13:48:33 +02:00

task: added flag for CR approver emails (#10144)

This commit is contained in:
Christopher Kolstad 2025-06-16 14:08:54 +02:00 committed by GitHub
parent 5bb1656eee
commit f0a2c335fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,8 @@ export type IFlagKey =
| 'lastSeenBulkQuery'
| 'lifecycleMetrics'
| 'customMetrics'
| 'createFlagDialogCache';
| 'createFlagDialogCache'
| 'changeRequestApproverEmails';
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
@ -281,6 +282,10 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_CREATE_FLAG_DIALOG_CACHE,
false,
),
changeRequestApproverEmails: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_CHANGE_REQUEST_APPROVER_EMAILS,
false,
),
};
export const defaultExperimentalOptions: IExperimentalOptions = {