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

chore: remove flag enterprise-payg (#10139)

https://linear.app/unleash/issue/2-3602/clean-up-flag-enterprise-payg

Removes
[enterprise-payg](https://app.unleash-hosted.com/hosted/projects/eg/features/enterprise-payg)

Doesn't seem like this is being used anywhere.
This commit is contained in:
Nuno Góis 2025-06-13 12:05:48 +01:00 committed by GitHub
parent 366915bf71
commit dbc34a10bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View File

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

View File

@ -47,7 +47,6 @@ export type IFlagKey =
| 'releasePlans'
| 'productivityReportEmail'
| 'productivityReportUnsubscribers'
| 'enterprise-payg'
| 'showUserDeviceCount'
| 'memorizeStats'
| 'streaming'
@ -233,10 +232,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_PRODUCTIVITY_REPORT_UNSUBSCRIBERS,
false,
),
'enterprise-payg': parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_ENTERPRISE_PAYG,
false,
),
showUserDeviceCount: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_SHOW_USER_DEVICE_COUNT,
false,