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:
parent
5bb1656eee
commit
f0a2c335fb
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user