[PR #145] [MERGED] Add subscriptions #752

Closed
opened 2026-02-26 18:48:46 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/145
Author: @Mythie
Created: 5/6/2023
Status: Merged
Merged: 5/22/2023
Merged by: @ElTimuro

Base: mainHead: feat/add-subscriptions


📝 Commits (10+)

  • ed3e4d2 feat: scaffhold subscription table and ui
  • 900b816 feat: stripe handlers and fetchers
  • da0166b fix: tidy stripe feature and add provider
  • e80997f fix: update env vars
  • e7e881b fix: update env types
  • 7eaa00b feat: add stripe api handlers
  • 6934e57 feat: add guards and subscription ui
  • d2c5657 fix: update signup env var
  • 22bc854 feat: add warnings for subscription lapses and cancellations
  • b5ec3cc Merge branch 'main' into feat/add-subscriptions

📊 Changes

46 files changed (+3020 additions, -118 deletions)

View changed files

📝 .env.example (+8 -1)
📝 .vscode/settings.json (+1 -1)
apps/web/components/billing-plans.tsx (+70 -0)
apps/web/components/billing-warning.tsx (+51 -0)
📝 apps/web/components/layout.tsx (+11 -1)
📝 apps/web/components/settings.tsx (+79 -3)
📝 apps/web/next.config.js (+6 -4)
📝 apps/web/package.json (+5 -2)
📝 apps/web/pages/_app.tsx (+6 -3)
📝 apps/web/pages/_document.tsx (+1 -4)
📝 apps/web/pages/api/documents/index.ts (+12 -1)
apps/web/pages/api/stripe/checkout-session.ts (+1 -0)
apps/web/pages/api/stripe/portal-session.ts (+1 -0)
apps/web/pages/api/stripe/subscription.ts (+1 -0)
apps/web/pages/api/stripe/webhook.ts (+5 -0)
📝 apps/web/pages/dashboard.tsx (+8 -2)
📝 apps/web/pages/documents.tsx (+3 -0)
📝 apps/web/pages/documents/[id]/index.tsx (+2 -0)
📝 apps/web/pages/documents/[id]/recipients.tsx (+3 -0)
📝 apps/web/pages/login.tsx (+2 -2)

...and 26 more files

📄 Description

Adds subscription functionality to Documenso to handle the community plan for our upcoming production launch.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/documenso/documenso/pull/145 **Author:** [@Mythie](https://github.com/Mythie) **Created:** 5/6/2023 **Status:** ✅ Merged **Merged:** 5/22/2023 **Merged by:** [@ElTimuro](https://github.com/ElTimuro) **Base:** `main` ← **Head:** `feat/add-subscriptions` --- ### 📝 Commits (10+) - [`ed3e4d2`](https://github.com/documenso/documenso/commit/ed3e4d22ef472a552780bbe58da65206eaa02789) feat: scaffhold subscription table and ui - [`900b816`](https://github.com/documenso/documenso/commit/900b816ae0b340db4344f37ba748a872a2da3742) feat: stripe handlers and fetchers - [`da0166b`](https://github.com/documenso/documenso/commit/da0166b7464b4d9c92ad9f782c991500d5931274) fix: tidy stripe feature and add provider - [`e80997f`](https://github.com/documenso/documenso/commit/e80997f4621fa383317604e42f40d1212b727d6a) fix: update env vars - [`e7e881b`](https://github.com/documenso/documenso/commit/e7e881be0140e521e79e4cc57732276616534d10) fix: update env types - [`7eaa00b`](https://github.com/documenso/documenso/commit/7eaa00b83651ca8a51056e9ede41ef4a82cf650a) feat: add stripe api handlers - [`6934e57`](https://github.com/documenso/documenso/commit/6934e573d56f18eae0b1406a7ef108e33a54c291) feat: add guards and subscription ui - [`d2c5657`](https://github.com/documenso/documenso/commit/d2c5657093c7895ab7ef120a458c5282a8ae8e81) fix: update signup env var - [`22bc854`](https://github.com/documenso/documenso/commit/22bc854cacbe2713bcd4c454511117f3ad076412) feat: add warnings for subscription lapses and cancellations - [`b5ec3cc`](https://github.com/documenso/documenso/commit/b5ec3cc8170433f7c354e6b97118e0862a61eb2f) Merge branch 'main' into feat/add-subscriptions ### 📊 Changes **46 files changed** (+3020 additions, -118 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+8 -1) 📝 `.vscode/settings.json` (+1 -1) ➕ `apps/web/components/billing-plans.tsx` (+70 -0) ➕ `apps/web/components/billing-warning.tsx` (+51 -0) 📝 `apps/web/components/layout.tsx` (+11 -1) 📝 `apps/web/components/settings.tsx` (+79 -3) 📝 `apps/web/next.config.js` (+6 -4) 📝 `apps/web/package.json` (+5 -2) 📝 `apps/web/pages/_app.tsx` (+6 -3) 📝 `apps/web/pages/_document.tsx` (+1 -4) 📝 `apps/web/pages/api/documents/index.ts` (+12 -1) ➕ `apps/web/pages/api/stripe/checkout-session.ts` (+1 -0) ➕ `apps/web/pages/api/stripe/portal-session.ts` (+1 -0) ➕ `apps/web/pages/api/stripe/subscription.ts` (+1 -0) ➕ `apps/web/pages/api/stripe/webhook.ts` (+5 -0) 📝 `apps/web/pages/dashboard.tsx` (+8 -2) 📝 `apps/web/pages/documents.tsx` (+3 -0) 📝 `apps/web/pages/documents/[id]/index.tsx` (+2 -0) 📝 `apps/web/pages/documents/[id]/recipients.tsx` (+3 -0) 📝 `apps/web/pages/login.tsx` (+2 -2) _...and 26 more files_ </details> ### 📄 Description Adds subscription functionality to Documenso to handle the community plan for our upcoming production launch. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 18:48:46 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/documenso#752
No description provided.