[PR #684] [MERGED] fix: remove server actions #1119

Closed
opened 2026-02-26 19:31:55 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/684
Author: @Mythie
Created: 11/25/2023
Status: Merged
Merged: 12/1/2023
Merged by: @Mythie

Base: mainHead: exp/react-tailwind-canary


📝 Commits (9)

  • 85195f9 exp: react-email tailwind canary
  • 0d442d2 exp: rip out server-actions that touch email
  • 2e95d88 Merge branch 'main' into exp/react-tailwind-canary
  • 1aeb4e0 chore: remove unused server action
  • 02adb55 chore: tidy package.json
  • d925189 fix: simplify signing field with token endpoint logic
  • 56c0fd1 chore: update package overrides
  • 34a2d0d fix: remove debugging changes
  • e68dcda Merge branch 'main' into exp/react-tailwind-canary

📊 Changes

44 files changed (+3886 additions, -5131 deletions)

View changed files

📝 apps/marketing/next.config.js (+1 -1)
📝 apps/marketing/package.json (+10 -2)
📝 apps/web/next.config.js (+1 -1)
📝 apps/web/package.json (+10 -2)
📝 apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx (+7 -6)
📝 apps/web/src/app/(signing)/sign/[token]/form.tsx (+5 -2)
apps/web/src/components/forms/edit-document/add-fields.action.ts (+0 -30)
apps/web/src/components/forms/edit-document/add-signers.action.ts (+0 -25)
apps/web/src/components/forms/edit-document/add-subject.action.ts (+0 -29)
apps/web/src/components/forms/edit-document/add-title.action.ts (+0 -21)
📝 package-lock.json (+3544 -4776)
📝 package.json (+8 -3)
📝 packages/ee/package.json (+2 -2)
packages/email/components.ts (+17 -0)
📝 packages/email/package.json (+17 -5)
📝 packages/email/render.ts (+1 -1)
📝 packages/email/template-components/template-confirmation-email.tsx (+3 -14)
📝 packages/email/template-components/template-document-completed.tsx (+3 -14)
📝 packages/email/template-components/template-document-image.tsx (+1 -1)
📝 packages/email/template-components/template-document-invite.tsx (+3 -14)

...and 24 more files

📄 Description

Initially started as a bump to react-email but has now led to the removal of server actions so as to regain more finer control over the application and timeouts.


🔄 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/684 **Author:** [@Mythie](https://github.com/Mythie) **Created:** 11/25/2023 **Status:** ✅ Merged **Merged:** 12/1/2023 **Merged by:** [@Mythie](https://github.com/Mythie) **Base:** `main` ← **Head:** `exp/react-tailwind-canary` --- ### 📝 Commits (9) - [`85195f9`](https://github.com/documenso/documenso/commit/85195f9c4f129fcd796bb6687527a22c2281b638) exp: react-email tailwind canary - [`0d442d2`](https://github.com/documenso/documenso/commit/0d442d214c90724a90bb209b836d8ff0c95be600) exp: rip out server-actions that touch email - [`2e95d88`](https://github.com/documenso/documenso/commit/2e95d881298964760fe4786f3740048c54a8d24b) Merge branch 'main' into exp/react-tailwind-canary - [`1aeb4e0`](https://github.com/documenso/documenso/commit/1aeb4e05743b847f0f769088067b606d41fbf2d6) chore: remove unused server action - [`02adb55`](https://github.com/documenso/documenso/commit/02adb55948d07d094af2290c4e0eb1f37e03ba96) chore: tidy package.json - [`d925189`](https://github.com/documenso/documenso/commit/d9251892d5ab1645e7abfd886678548f6d2f1a47) fix: simplify signing field with token endpoint logic - [`56c0fd1`](https://github.com/documenso/documenso/commit/56c0fd110bfa778e5e177f4c728ba0aa8bb9b251) chore: update package overrides - [`34a2d0d`](https://github.com/documenso/documenso/commit/34a2d0dec74bff903dd9d4f33660935061914918) fix: remove debugging changes - [`e68dcda`](https://github.com/documenso/documenso/commit/e68dcda520c3ed5b4beed4a64ba554ea0c5309fd) Merge branch 'main' into exp/react-tailwind-canary ### 📊 Changes **44 files changed** (+3886 additions, -5131 deletions) <details> <summary>View changed files</summary> 📝 `apps/marketing/next.config.js` (+1 -1) 📝 `apps/marketing/package.json` (+10 -2) 📝 `apps/web/next.config.js` (+1 -1) 📝 `apps/web/package.json` (+10 -2) 📝 `apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx` (+7 -6) 📝 `apps/web/src/app/(signing)/sign/[token]/form.tsx` (+5 -2) ➖ `apps/web/src/components/forms/edit-document/add-fields.action.ts` (+0 -30) ➖ `apps/web/src/components/forms/edit-document/add-signers.action.ts` (+0 -25) ➖ `apps/web/src/components/forms/edit-document/add-subject.action.ts` (+0 -29) ➖ `apps/web/src/components/forms/edit-document/add-title.action.ts` (+0 -21) 📝 `package-lock.json` (+3544 -4776) 📝 `package.json` (+8 -3) 📝 `packages/ee/package.json` (+2 -2) ➕ `packages/email/components.ts` (+17 -0) 📝 `packages/email/package.json` (+17 -5) 📝 `packages/email/render.ts` (+1 -1) 📝 `packages/email/template-components/template-confirmation-email.tsx` (+3 -14) 📝 `packages/email/template-components/template-document-completed.tsx` (+3 -14) 📝 `packages/email/template-components/template-document-image.tsx` (+1 -1) 📝 `packages/email/template-components/template-document-invite.tsx` (+3 -14) _...and 24 more files_ </details> ### 📄 Description Initially started as a bump to react-email but has now led to the removal of server actions so as to regain more finer control over the application and timeouts. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 19:31:55 +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#1119
No description provided.