mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 08:42:12 +10:00
feat: scaffhold subscription table and ui
This commit is contained in:
12
packages/lib/stripe/data/plans.ts
Normal file
12
packages/lib/stripe/data/plans.ts
Normal file
@ -0,0 +1,12 @@
|
||||
export const STRIPE_PLANS = [
|
||||
{
|
||||
name: "Community Plan",
|
||||
period: "monthly",
|
||||
priceId: process.env.STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID ?? "",
|
||||
},
|
||||
{
|
||||
name: "Community Plan",
|
||||
period: "yearly",
|
||||
priceId: process.env.STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID ?? "",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user