1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-12 01:17:04 +02:00

chore: create the releasePlanChangeRequests feature flag (#9126)

This commit is contained in:
David Leek 2025-01-21 14:26:22 +01:00 committed by GitHub
parent e4eab4587c
commit 09872ae760
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 0 deletions

View File

@ -85,6 +85,7 @@ export type UiFlags = {
enableLegacyVariants?: boolean;
flagCreator?: boolean;
releasePlans?: boolean;
releasePlanChangeRequests?: boolean;
'enterprise-payg'?: boolean;
productivityReportEmail?: boolean;
showUserDeviceCount?: boolean;

View File

@ -50,6 +50,7 @@ export type IFlagKey =
| 'originMiddlewareRequestLogging'
| 'webhookDomainLogging'
| 'releasePlans'
| 'releasePlanChangeRequests'
| 'productivityReportEmail'
| 'enterprise-payg'
| 'flagOverviewRedesign'
@ -251,6 +252,10 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_RELEASE_PLANS,
false,
),
releasePlanChangeRequests: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_RELEASE_PLAN_CHANGE_REQUESTS,
false,
),
productivityReportEmail: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_PRODUCTIVITY_REPORT_EMAIL,
false,

View File

@ -50,6 +50,7 @@ process.nextTick(async () => {
originMiddlewareRequestLogging: true,
webhookDomainLogging: true,
releasePlans: false,
releasePlanChangeRequests: false,
showUserDeviceCount: true,
flagOverviewRedesign: false,
granularAdminPermissions: true,