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 <keshavgupta@Keshavs-MacBook-Air.local>
This commit is contained in:
Keshav Gupta
2025-04-09 15:01:38 +05:30
committed by GitHub
parent 11fb8e0284
commit 8582bcccf5

View File

@ -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',