[PR #326] [MERGED] feat: signing completed sharing link #880

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

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/326
Author: @ephraimduncan
Created: 8/29/2023
Status: Merged
Merged: 9/23/2023
Merged by: @Mythie

Base: feat/refreshHead: feat/completed-share-link


📝 Commits (10+)

  • e8559ce feat: add initial og image for share link
  • 874d919 feat: create sharing id for each recipient
  • 81c3e70 feat: display signature text from params
  • b459783 feat: generate metatags for share page with og image
  • 66dfdc5 feat: redirect share page to marketing page after 3 seconds
  • f1f6e2e Merge branch 'feat/refresh' into feat/completed-share-link
  • 8d4df7d fix: update og card
  • 75feaef chore: remove unused files
  • b43ddcb refactor: redirect using useRouter
  • 0cdd980 feat: move opengraph-image to next.js 13 implementation

📊 Changes

49 files changed (+990 additions, -130 deletions)

View changed files

📝 apps/marketing/package.json (+3 -2)
📝 apps/web/package.json (+3 -2)
apps/web/public/fonts/caveat-regular.ttf (+0 -0)
apps/web/public/fonts/inter-bold.ttf (+0 -0)
apps/web/public/fonts/inter-regular.ttf (+0 -0)
apps/web/public/fonts/inter-semibold.ttf (+0 -0)
apps/web/public/next.svg (+0 -1)
apps/web/public/static/og-share-frame.png (+0 -0)
apps/web/public/vercel.svg (+0 -1)
📝 apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx (+25 -2)
📝 apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx (+33 -5)
apps/web/src/app/(share)/share/[slug]/opengraph-image.tsx (+153 -0)
apps/web/src/app/(share)/share/[slug]/page.tsx (+11 -0)
apps/web/src/app/(share)/share/[slug]/redirect.tsx (+11 -0)
📝 apps/web/src/app/(signing)/sign/[token]/complete/page.tsx (+3 -7)
apps/web/src/app/(signing)/sign/[token]/complete/share-button.tsx (+51 -0)
📝 apps/web/src/app/(signing)/sign/[token]/page.tsx (+1 -1)
apps/web/src/assets/background-pattern-og.png (+0 -0)
apps/web/src/assets/caveat-regular.ttf (+0 -0)
apps/web/src/assets/inter-bold.ttf (+0 -0)

...and 29 more files

📄 Description

No description provided


🔄 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/326 **Author:** [@ephraimduncan](https://github.com/ephraimduncan) **Created:** 8/29/2023 **Status:** ✅ Merged **Merged:** 9/23/2023 **Merged by:** [@Mythie](https://github.com/Mythie) **Base:** `feat/refresh` ← **Head:** `feat/completed-share-link` --- ### 📝 Commits (10+) - [`e8559ce`](https://github.com/documenso/documenso/commit/e8559cecd5c478475381b195084f6755dc7cf2b0) feat: add initial og image for share link - [`874d919`](https://github.com/documenso/documenso/commit/874d919a6a2253b3fe71a7f3f221b269e4e7a4d2) feat: create sharing id for each recipient - [`81c3e70`](https://github.com/documenso/documenso/commit/81c3e701e2ec2ff700419d2cde140d3c683ac9f1) feat: display signature text from params - [`b459783`](https://github.com/documenso/documenso/commit/b45978374bafb5b8c8d0aa906004195751a3b393) feat: generate metatags for share page with og image - [`66dfdc5`](https://github.com/documenso/documenso/commit/66dfdc5ad09e1158ca2ecca90307403e1e701183) feat: redirect share page to marketing page after 3 seconds - [`f1f6e2e`](https://github.com/documenso/documenso/commit/f1f6e2e40a41b20e02d66ace773b218c0cc79a72) Merge branch 'feat/refresh' into feat/completed-share-link - [`8d4df7d`](https://github.com/documenso/documenso/commit/8d4df7d3ddd89f6120429014ca23d875acad685c) fix: update og card - [`75feaef`](https://github.com/documenso/documenso/commit/75feaefbf29d445643406e2b5c15cf9aeb92681d) chore: remove unused files - [`b43ddcb`](https://github.com/documenso/documenso/commit/b43ddcbea2e39060bf936713953bea087961990f) refactor: redirect using useRouter - [`0cdd980`](https://github.com/documenso/documenso/commit/0cdd980a4bc21c1428c556b6cf979d490cfffcee) feat: move opengraph-image to next.js 13 implementation ### 📊 Changes **49 files changed** (+990 additions, -130 deletions) <details> <summary>View changed files</summary> 📝 `apps/marketing/package.json` (+3 -2) 📝 `apps/web/package.json` (+3 -2) ➕ `apps/web/public/fonts/caveat-regular.ttf` (+0 -0) ➕ `apps/web/public/fonts/inter-bold.ttf` (+0 -0) ➕ `apps/web/public/fonts/inter-regular.ttf` (+0 -0) ➕ `apps/web/public/fonts/inter-semibold.ttf` (+0 -0) ➖ `apps/web/public/next.svg` (+0 -1) ➕ `apps/web/public/static/og-share-frame.png` (+0 -0) ➖ `apps/web/public/vercel.svg` (+0 -1) 📝 `apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx` (+25 -2) 📝 `apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx` (+33 -5) ➕ `apps/web/src/app/(share)/share/[slug]/opengraph-image.tsx` (+153 -0) ➕ `apps/web/src/app/(share)/share/[slug]/page.tsx` (+11 -0) ➕ `apps/web/src/app/(share)/share/[slug]/redirect.tsx` (+11 -0) 📝 `apps/web/src/app/(signing)/sign/[token]/complete/page.tsx` (+3 -7) ➕ `apps/web/src/app/(signing)/sign/[token]/complete/share-button.tsx` (+51 -0) 📝 `apps/web/src/app/(signing)/sign/[token]/page.tsx` (+1 -1) ➕ `apps/web/src/assets/background-pattern-og.png` (+0 -0) ➕ `apps/web/src/assets/caveat-regular.ttf` (+0 -0) ➕ `apps/web/src/assets/inter-bold.ttf` (+0 -0) _...and 29 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 19:30:52 +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#880
No description provided.