[PR #1649] [CLOSED] feat: customize doc audit logs and certificate #1770

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

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/1649
Author: @catalinpit
Created: 2/14/2025
Status: Closed

Base: archive/nextjsHead: feat/customize-doc-audit-log-certificate


📝 Commits (10+)

  • 8b1b0de feat: customize doc audit logs and certificate
  • 080bb40 feat: include audit logs
  • f6a2422 feat: download options for document
  • afb156f chore: audit trail log cert
  • 6a9ae13 Merge branch 'main' into feat/customize-doc-audit-log-certificate
  • a4f1a13 chore: redo changes
  • 0084a94 chore: improve logic
  • 5f602d8 chore: fix seal document handler
  • 9182d01 Merge branch 'main' into feat/customize-doc-audit-log-certificate
  • bb62fa7 Merge branch 'archive/nextjs' into feat/customize-doc-audit-log-certificate

📊 Changes

24 files changed (+684 additions, -53 deletions)

View changed files

📝 apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx (+131 -13)
📝 apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx (+2 -0)
📝 apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx (+35 -0)
📝 apps/web/src/components/document/document-history-sheet.tsx (+34 -0)
📝 packages/lib/jobs/definitions/emails/send-team-deleted-email.ts (+1 -0)
📝 packages/lib/jobs/definitions/internal/seal-document.handler.ts (+42 -7)
📝 packages/lib/server-only/document/create-document.ts (+2 -0)
📝 packages/lib/server-only/document/seal-document.ts (+42 -7)
📝 packages/lib/server-only/document/update-document.ts (+38 -0)
packages/lib/server-only/htmltopdf/get-audit-logs-pdf.ts (+74 -0)
📝 packages/lib/server-only/team/update-team-document-settings.ts (+4 -0)
📝 packages/lib/types/document-audit-logs.ts (+15 -1)
📝 packages/lib/types/document.ts (+6 -0)
📝 packages/lib/utils/document-audit-logs.ts (+8 -0)
packages/prisma/migrations/20250217090902_add_audit_trail_log_team_preferences/migration.sql (+2 -0)
packages/prisma/migrations/20250219075352_add_document_properties/migration.sql (+3 -0)
packages/prisma/migrations/20250219100115_update_property_name/migration.sql (+9 -0)
📝 packages/prisma/schema.prisma (+27 -24)
📝 packages/trpc/server/document-router/router.ts (+1 -1)
📝 packages/trpc/server/document-router/schema.ts (+14 -0)

...and 4 more files

📄 Description

https://github.com/user-attachments/assets/36f09960-0da4-4f04-8350-2cb7c6841375


🔄 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/1649 **Author:** [@catalinpit](https://github.com/catalinpit) **Created:** 2/14/2025 **Status:** ❌ Closed **Base:** `archive/nextjs` ← **Head:** `feat/customize-doc-audit-log-certificate` --- ### 📝 Commits (10+) - [`8b1b0de`](https://github.com/documenso/documenso/commit/8b1b0de935fbae23503d0cbaf32ffbe4702b075a) feat: customize doc audit logs and certificate - [`080bb40`](https://github.com/documenso/documenso/commit/080bb405f0b091578d3a0119ece26e0c536a36e6) feat: include audit logs - [`f6a2422`](https://github.com/documenso/documenso/commit/f6a24224fe05da2cfb5f88921214877f03df5504) feat: download options for document - [`afb156f`](https://github.com/documenso/documenso/commit/afb156f073a3b2b1faf59eff27f42bc2bdae7ac4) chore: audit trail log cert - [`6a9ae13`](https://github.com/documenso/documenso/commit/6a9ae132c78b557ffef48b41830022ffd39dd003) Merge branch 'main' into feat/customize-doc-audit-log-certificate - [`a4f1a13`](https://github.com/documenso/documenso/commit/a4f1a138d07f6f84ca8021b25b4eb3af3a1beb10) chore: redo changes - [`0084a94`](https://github.com/documenso/documenso/commit/0084a94bb14efd63c01c5c8d082084a15cb074d0) chore: improve logic - [`5f602d8`](https://github.com/documenso/documenso/commit/5f602d897b3ecefe979a43fe507c02a9efb84895) chore: fix seal document handler - [`9182d01`](https://github.com/documenso/documenso/commit/9182d014b4b623c3740719efdd32234d520e0490) Merge branch 'main' into feat/customize-doc-audit-log-certificate - [`bb62fa7`](https://github.com/documenso/documenso/commit/bb62fa7a164ae8604714823aa073494657edbc7c) Merge branch 'archive/nextjs' into feat/customize-doc-audit-log-certificate ### 📊 Changes **24 files changed** (+684 additions, -53 deletions) <details> <summary>View changed files</summary> 📝 `apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx` (+131 -13) 📝 `apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx` (+2 -0) 📝 `apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx` (+35 -0) 📝 `apps/web/src/components/document/document-history-sheet.tsx` (+34 -0) 📝 `packages/lib/jobs/definitions/emails/send-team-deleted-email.ts` (+1 -0) 📝 `packages/lib/jobs/definitions/internal/seal-document.handler.ts` (+42 -7) 📝 `packages/lib/server-only/document/create-document.ts` (+2 -0) 📝 `packages/lib/server-only/document/seal-document.ts` (+42 -7) 📝 `packages/lib/server-only/document/update-document.ts` (+38 -0) ➕ `packages/lib/server-only/htmltopdf/get-audit-logs-pdf.ts` (+74 -0) 📝 `packages/lib/server-only/team/update-team-document-settings.ts` (+4 -0) 📝 `packages/lib/types/document-audit-logs.ts` (+15 -1) 📝 `packages/lib/types/document.ts` (+6 -0) 📝 `packages/lib/utils/document-audit-logs.ts` (+8 -0) ➕ `packages/prisma/migrations/20250217090902_add_audit_trail_log_team_preferences/migration.sql` (+2 -0) ➕ `packages/prisma/migrations/20250219075352_add_document_properties/migration.sql` (+3 -0) ➕ `packages/prisma/migrations/20250219100115_update_property_name/migration.sql` (+9 -0) 📝 `packages/prisma/schema.prisma` (+27 -24) 📝 `packages/trpc/server/document-router/router.ts` (+1 -1) 📝 `packages/trpc/server/document-router/schema.ts` (+14 -0) _...and 4 more files_ </details> ### 📄 Description https://github.com/user-attachments/assets/36f09960-0da4-4f04-8350-2cb7c6841375 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 20:30:59 +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#1770
No description provided.