mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-11-29 03:16:42 +01:00
Remove checkoutSessionId from project (#282)
* remove checkoutSessionId from project * fix app_diff * Update schema.prisma.diff --------- Co-authored-by: vincanger <70215737+vincanger@users.noreply.github.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
--- template/app/src/server/scripts/dbSeeds.ts
|
||||
+++ opensaas-sh/app/src/server/scripts/dbSeeds.ts
|
||||
@@ -38,10 +38,12 @@
|
||||
@@ -38,9 +38,11 @@
|
||||
sendNewsletter: false,
|
||||
credits,
|
||||
subscriptionStatus,
|
||||
@@ -8,7 +8,6 @@
|
||||
- paymentProcessorUserId: hasUserPaidOnStripe ? `cus_test_${faker.string.uuid()}` : null,
|
||||
+ stripeId: hasUserPaidOnStripe ? `cus_test_${faker.string.uuid()}` : null,
|
||||
datePaid: hasUserPaidOnStripe ? faker.date.between({ from: createdAt, to: lastActiveTimestamp }) : null,
|
||||
checkoutSessionId: hasUserPaidOnStripe ? `cs_test_${faker.string.uuid()}` : null,
|
||||
subscriptionPlan: subscriptionStatus ? faker.helpers.arrayElement(getSubscriptionPaymentPlanIds()) : null,
|
||||
+ // For the demo app, we want to default isMockUser to true so that our admin dash only shows mock users
|
||||
+ // and not real users signing up to test the app
|
||||
|
||||
Reference in New Issue
Block a user