[PR #496] [MERGED] feat: enable resend email menu #1008

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

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/496
Author: @G3root
Created: 10/3/2023
Status: Merged
Merged: 11/16/2023
Merged by: @Mythie

Base: feat/refreshHead: resend/email


📝 Commits (10+)

  • 49f61c6 feat: add resend option to send document
  • 0efa9d6 feat: add resend option
  • 5c740dc feat: add close primitive
  • c939991 fix: procedure
  • 69039be feat: add modal
  • 2e63f61 Merge branch 'feat/refresh' into resend/email
  • a560888 feat: center dialog and remove unused close button
  • 85e3255 feat: update checkbox styling
  • b6b47d6 feat: reduce the opacity of unselected fields in the resend dialog
  • 13568b6 chore: rename file to resend-dialog

📊 Changes

27 files changed (+407 additions, -74 deletions)

View changed files

📝 apps/web/src/app/(dashboard)/admin/layout.tsx (+1 -1)
📝 apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx (+1 -1)
📝 apps/web/src/app/(dashboard)/documents/[id]/page.tsx (+1 -1)
apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx (+185 -0)
📝 apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx (+6 -7)
📝 apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx (+7 -3)
📝 apps/web/src/app/(dashboard)/documents/page.tsx (+3 -5)
📝 apps/web/src/app/(dashboard)/layout.tsx (+1 -1)
📝 apps/web/src/app/(dashboard)/settings/billing/create-billing-portal.action.ts (+3 -2)
📝 apps/web/src/app/(dashboard)/settings/billing/create-checkout.action.ts (+2 -2)
📝 apps/web/src/app/(dashboard)/settings/billing/page.tsx (+2 -2)
📝 apps/web/src/app/(dashboard)/settings/password/page.tsx (+1 -1)
📝 apps/web/src/app/(dashboard)/settings/profile/page.tsx (+1 -1)
📝 apps/web/src/app/(signing)/sign/[token]/layout.tsx (+1 -1)
📝 apps/web/src/app/(signing)/sign/[token]/page.tsx (+1 -1)
📝 apps/web/src/app/not-found.tsx (+1 -1)
📝 apps/web/src/components/forms/edit-document/add-fields.action.ts (+2 -2)
📝 apps/web/src/components/forms/edit-document/add-signers.action.ts (+2 -2)
📝 apps/web/src/components/forms/edit-document/add-subject.action.ts (+2 -2)
packages/lib/next-auth/get-server-component-session.ts (+35 -0)

...and 7 more files

📄 Description

fixes #473


🔄 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/496 **Author:** [@G3root](https://github.com/G3root) **Created:** 10/3/2023 **Status:** ✅ Merged **Merged:** 11/16/2023 **Merged by:** [@Mythie](https://github.com/Mythie) **Base:** `feat/refresh` ← **Head:** `resend/email` --- ### 📝 Commits (10+) - [`49f61c6`](https://github.com/documenso/documenso/commit/49f61c6646681f2f1b69b8598152fbb3fbb94a38) feat: add resend option to send document - [`0efa9d6`](https://github.com/documenso/documenso/commit/0efa9d6c1bfe3010ef61b9587e5b8673b09a0481) feat: add resend option - [`5c740dc`](https://github.com/documenso/documenso/commit/5c740dcd3f6407752fdc338c20a609f6e0c32307) feat: add close primitive - [`c939991`](https://github.com/documenso/documenso/commit/c939991e628299936b6d7e1b283d0188ec3d9fc4) fix: procedure - [`69039be`](https://github.com/documenso/documenso/commit/69039be3bf6d32c2b77c567d75d8184a111f7848) feat: add modal - [`2e63f61`](https://github.com/documenso/documenso/commit/2e63f611e4c7dfa1b2a9f68ff883ca03fb13c0f8) Merge branch 'feat/refresh' into resend/email - [`a560888`](https://github.com/documenso/documenso/commit/a56088854af4bed3f9dd3df00d7176ea1768a4d6) feat: center dialog and remove unused close button - [`85e3255`](https://github.com/documenso/documenso/commit/85e3255098f085d806971a5c6dffe90d4db032a9) feat: update checkbox styling - [`b6b47d6`](https://github.com/documenso/documenso/commit/b6b47d6eb998f3c1ec8bba26a1d603b19700f0fa) feat: reduce the opacity of unselected fields in the resend dialog - [`13568b6`](https://github.com/documenso/documenso/commit/13568b6d81aa70212ebd74b38b35792b4d458343) chore: rename file to resend-dialog ### 📊 Changes **27 files changed** (+407 additions, -74 deletions) <details> <summary>View changed files</summary> 📝 `apps/web/src/app/(dashboard)/admin/layout.tsx` (+1 -1) 📝 `apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx` (+1 -1) 📝 `apps/web/src/app/(dashboard)/documents/[id]/page.tsx` (+1 -1) ➕ `apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx` (+185 -0) 📝 `apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx` (+6 -7) 📝 `apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx` (+7 -3) 📝 `apps/web/src/app/(dashboard)/documents/page.tsx` (+3 -5) 📝 `apps/web/src/app/(dashboard)/layout.tsx` (+1 -1) 📝 `apps/web/src/app/(dashboard)/settings/billing/create-billing-portal.action.ts` (+3 -2) 📝 `apps/web/src/app/(dashboard)/settings/billing/create-checkout.action.ts` (+2 -2) 📝 `apps/web/src/app/(dashboard)/settings/billing/page.tsx` (+2 -2) 📝 `apps/web/src/app/(dashboard)/settings/password/page.tsx` (+1 -1) 📝 `apps/web/src/app/(dashboard)/settings/profile/page.tsx` (+1 -1) 📝 `apps/web/src/app/(signing)/sign/[token]/layout.tsx` (+1 -1) 📝 `apps/web/src/app/(signing)/sign/[token]/page.tsx` (+1 -1) 📝 `apps/web/src/app/not-found.tsx` (+1 -1) 📝 `apps/web/src/components/forms/edit-document/add-fields.action.ts` (+2 -2) 📝 `apps/web/src/components/forms/edit-document/add-signers.action.ts` (+2 -2) 📝 `apps/web/src/components/forms/edit-document/add-subject.action.ts` (+2 -2) ➕ `packages/lib/next-auth/get-server-component-session.ts` (+35 -0) _...and 7 more files_ </details> ### 📄 Description fixes #473 --- <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:26 +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#1008
No description provided.