From 8582bcccf539d943be871b5e9c240590a0dcc669 Mon Sep 17 00:00:00 2001 From: Keshav Gupta Date: Wed, 9 Apr 2025 15:01:38 +0530 Subject: [PATCH] remove billing stripe plan product id from env (#11461) Fixes https://github.com/twentyhq/core-team-issues/issues/661 remove billing stripe plan product id from env Co-authored-by: Keshav Gupta --- .../core-modules/environment/environment-variables.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts b/packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts index b4d4f7757..2cac00268 100644 --- a/packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts +++ b/packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts @@ -527,15 +527,6 @@ export class EnvironmentVariables { @ValidateIf((env) => env.IS_BILLING_ENABLED === true) BILLING_STRIPE_WEBHOOK_SECRET: string; - @EnvironmentVariablesMetadata({ - group: EnvironmentVariablesGroup.BillingConfig, - sensitive: true, - description: 'Base plan product ID for Stripe billing', - }) - @IsString() - @ValidateIf((env) => env.IS_BILLING_ENABLED === true) - BILLING_STRIPE_BASE_PLAN_PRODUCT_ID: string; - @EnvironmentVariablesMetadata({ group: EnvironmentVariablesGroup.ServerConfig, description: 'Url for the frontend application',