mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +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'
|
| 'lastSeenBulkQuery'
|
||||||
| 'lifecycleMetrics'
|
| 'lifecycleMetrics'
|
||||||
| 'customMetrics'
|
| 'customMetrics'
|
||||||
| 'createFlagDialogCache';
|
| 'createFlagDialogCache'
|
||||||
|
| 'changeRequestApproverEmails';
|
||||||
|
|
||||||
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
||||||
|
|
||||||
@ -281,6 +282,10 @@ const flags: IFlags = {
|
|||||||
process.env.UNLEASH_EXPERIMENTAL_CREATE_FLAG_DIALOG_CACHE,
|
process.env.UNLEASH_EXPERIMENTAL_CREATE_FLAG_DIALOG_CACHE,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
|
changeRequestApproverEmails: parseEnvVarBoolean(
|
||||||
|
process.env.UNLEASH_EXPERIMENTAL_CHANGE_REQUEST_APPROVER_EMAILS,
|
||||||
|
false,
|
||||||
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
export const defaultExperimentalOptions: IExperimentalOptions = {
|
export const defaultExperimentalOptions: IExperimentalOptions = {
|
||||||
|
Loading…
Reference in New Issue
Block a user