[PR #1660] [CLOSED] feat: use multiselect for webhook triggers #1775

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

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/1660
Author: @ephraimduncan
Created: 2/19/2025
Status: Closed

Base: mainHead: chore/webhook-trigger-multiselect


📝 Commits (4)

  • 7f9f7c4 feat: use multiselect for webhook triggers
  • 1b5d24e chore: add terms and privacy policy link (#1707)
  • 3e97643 feat: add signature configurations (#1710)
  • 092d4a0 Merge branch 'feat/rr7' into chore/webhook-trigger-multiselect

📊 Changes

80 files changed (+3016 additions, -1183 deletions)

View changed files

📝 apps/remix/app/components/embed/embed-direct-template-client-page.tsx (+14 -45)
📝 apps/remix/app/components/embed/embed-document-fields.tsx (+2 -0)
📝 apps/remix/app/components/embed/embed-document-signing-page.tsx (+14 -46)
📝 apps/remix/app/components/forms/profile.tsx (+11 -10)
📝 apps/remix/app/components/forms/signup.tsx (+25 -5)
📝 apps/remix/app/components/forms/team-branding-preferences-form.tsx (+1 -1)
📝 apps/remix/app/components/forms/team-document-preferences-form.tsx (+52 -35)
📝 apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx (+13 -23)
📝 apps/remix/app/components/general/document-signing/document-signing-form.tsx (+11 -34)
📝 apps/remix/app/components/general/document-signing/document-signing-page-view.tsx (+2 -0)
📝 apps/remix/app/components/general/document-signing/document-signing-provider.tsx (+26 -12)
📝 apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx (+20 -34)
📝 apps/remix/app/components/general/document/document-edit-form.tsx (+6 -11)
📝 apps/remix/app/components/general/template/template-edit-form.tsx (+6 -8)
📝 apps/remix/app/components/general/webhook-multiselect-combobox.tsx (+25 -78)
📝 apps/remix/app/routes/_recipient+/d.$token+/_index.tsx (+8 -1)
📝 apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx (+3 -0)
📝 apps/remix/app/routes/embed+/direct.$url.tsx (+8 -1)
📝 apps/remix/app/routes/embed+/sign.$url.tsx (+3 -0)
📝 packages/api/v1/implementation.ts (+2 -0)

...and 60 more files

📄 Description

Demo

CleanShot 2025-02-18 at 18 01 05


🔄 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/1660 **Author:** [@ephraimduncan](https://github.com/ephraimduncan) **Created:** 2/19/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `chore/webhook-trigger-multiselect` --- ### 📝 Commits (4) - [`7f9f7c4`](https://github.com/documenso/documenso/commit/7f9f7c4092ce50bbe136060bb800ab6efed8a40f) feat: use multiselect for webhook triggers - [`1b5d24e`](https://github.com/documenso/documenso/commit/1b5d24e308b3a11d772cbe6d12ebcb0a3a3f5eba) chore: add terms and privacy policy link (#1707) - [`3e97643`](https://github.com/documenso/documenso/commit/3e97643e7ed51bce03083d6113d1fafa7d48d44e) feat: add signature configurations (#1710) - [`092d4a0`](https://github.com/documenso/documenso/commit/092d4a0593fbdeb1be79e188202108c80545f239) Merge branch 'feat/rr7' into chore/webhook-trigger-multiselect ### 📊 Changes **80 files changed** (+3016 additions, -1183 deletions) <details> <summary>View changed files</summary> 📝 `apps/remix/app/components/embed/embed-direct-template-client-page.tsx` (+14 -45) 📝 `apps/remix/app/components/embed/embed-document-fields.tsx` (+2 -0) 📝 `apps/remix/app/components/embed/embed-document-signing-page.tsx` (+14 -46) 📝 `apps/remix/app/components/forms/profile.tsx` (+11 -10) 📝 `apps/remix/app/components/forms/signup.tsx` (+25 -5) 📝 `apps/remix/app/components/forms/team-branding-preferences-form.tsx` (+1 -1) 📝 `apps/remix/app/components/forms/team-document-preferences-form.tsx` (+52 -35) 📝 `apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx` (+13 -23) 📝 `apps/remix/app/components/general/document-signing/document-signing-form.tsx` (+11 -34) 📝 `apps/remix/app/components/general/document-signing/document-signing-page-view.tsx` (+2 -0) 📝 `apps/remix/app/components/general/document-signing/document-signing-provider.tsx` (+26 -12) 📝 `apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx` (+20 -34) 📝 `apps/remix/app/components/general/document/document-edit-form.tsx` (+6 -11) 📝 `apps/remix/app/components/general/template/template-edit-form.tsx` (+6 -8) 📝 `apps/remix/app/components/general/webhook-multiselect-combobox.tsx` (+25 -78) 📝 `apps/remix/app/routes/_recipient+/d.$token+/_index.tsx` (+8 -1) 📝 `apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx` (+3 -0) 📝 `apps/remix/app/routes/embed+/direct.$url.tsx` (+8 -1) 📝 `apps/remix/app/routes/embed+/sign.$url.tsx` (+3 -0) 📝 `packages/api/v1/implementation.ts` (+2 -0) _...and 60 more files_ </details> ### 📄 Description ## Demo ![CleanShot 2025-02-18 at 18 01 05](https://github.com/user-attachments/assets/5afeab95-1a80-4d54-b845-b32cb2e33266) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 20:31:00 +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#1775
No description provided.