[PR #1786] [CLOSED] Test chat #1845

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

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/1786
Author: @FilyBox
Created: 5/10/2025
Status: Closed

Base: mainHead: test-chat


📝 Commits (10+)

  • f38a97d fix: error in remix's package.json when npm run start or build
  • d8e276b fix: added cert.p12 file
  • eaf4303 Merge pull request #1 from FilyBox/test
  • 9ce735b fix: changes in render.yaml
  • dc8c6a1 fix: changes in render.yaml
  • eee79f6 Merge pull request #2 from FilyBox/test
  • 2e24469 fix: changes in render.yaml
  • 219c4eb Merge pull request #3 from FilyBox/test
  • 15b4526 fix: changes in render.yaml
  • 9a0a26c Merge pull request #4 from FilyBox/test

📊 Changes

150 files changed (+171574 additions, -1004 deletions)

View changed files

.env.example (+0 -130)
Dockerfile (+117 -0)
📝 apps/openpage-api/package.json (+2 -2)
📝 apps/remix/app/components/dialogs/account-delete-dialog.tsx (+3 -4)
apps/remix/app/components/dialogs/chat-move-to-folder-dialog.tsx (+216 -0)
📝 apps/remix/app/components/dialogs/document-delete-dialog.tsx (+19 -2)
apps/remix/app/components/dialogs/folder-create-dialog-chat.tsx (+163 -0)
📝 apps/remix/app/components/dialogs/webhook-create-dialog.tsx (+2 -2)
📝 apps/remix/app/components/forms/signup.tsx (+4 -4)
apps/remix/app/components/general/app-header-team.tsx (+95 -0)
📝 apps/remix/app/components/general/app-header.tsx (+0 -1)
apps/remix/app/components/general/app-nav-desktop-team.tsx (+99 -0)
📝 apps/remix/app/components/general/app-nav-desktop.tsx (+4 -0)
apps/remix/app/components/general/app-nav-mobile-team.tsx (+96 -0)
📝 apps/remix/app/components/general/app-nav-mobile.tsx (+4 -0)
📝 apps/remix/app/components/general/branding-logo.tsx (+24 -22)
apps/remix/app/components/general/chatspace/chatspace-document-upload.tsx (+171 -0)
📝 apps/remix/app/components/general/document/document-certificate-qr-view.tsx (+2 -2)
📝 apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx (+2 -2)
📝 apps/remix/app/components/general/document/document-page-view-dropdown.tsx (+3 -13)

...and 80 more files

📄 Description


name: Pull Request
about: Submit changes to the project for review and inclusion

Description

Changes Made

  • Change 1
  • Change 2
  • ...

Testing Performed

  • Tested feature X in scenario Y.
  • Ran unit tests for component Z.
  • Tested on browsers A, B, and C.
  • ...

Checklist

  • I have tested these changes locally and they work as expected.
  • I have added/updated tests that prove the effectiveness of these changes.
  • I have updated the documentation to reflect these changes, if applicable.
  • I have followed the project's coding style guidelines.
  • I have addressed the code review feedback from the previous submission, if applicable.

Additional Notes


🔄 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/1786 **Author:** [@FilyBox](https://github.com/FilyBox) **Created:** 5/10/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `test-chat` --- ### 📝 Commits (10+) - [`f38a97d`](https://github.com/documenso/documenso/commit/f38a97dd7f84c2dc35c9aa53ba099e8863f70902) fix: error in remix's package.json when npm run start or build - [`d8e276b`](https://github.com/documenso/documenso/commit/d8e276b058a5f1f114a8715596195ac213d06517) fix: added cert.p12 file - [`eaf4303`](https://github.com/documenso/documenso/commit/eaf4303693fd5e76e3c9215903e58a2fdce19294) Merge pull request #1 from FilyBox/test - [`9ce735b`](https://github.com/documenso/documenso/commit/9ce735b35a8168be5a0b7327ed203f51ef6d6bc7) fix: changes in render.yaml - [`dc8c6a1`](https://github.com/documenso/documenso/commit/dc8c6a1eed6826fbe1d088a38abb27e278d87151) fix: changes in render.yaml - [`eee79f6`](https://github.com/documenso/documenso/commit/eee79f61e8240b0d0536e3c4bd465cfe46e8be0f) Merge pull request #2 from FilyBox/test - [`2e24469`](https://github.com/documenso/documenso/commit/2e24469eadbab92cc8f02984434585c9dad73328) fix: changes in render.yaml - [`219c4eb`](https://github.com/documenso/documenso/commit/219c4ebbe06a63168176d182d105b1ba80cb6ff2) Merge pull request #3 from FilyBox/test - [`15b4526`](https://github.com/documenso/documenso/commit/15b45265820082ccf48694d349bdb12ee5bced75) fix: changes in render.yaml - [`9a0a26c`](https://github.com/documenso/documenso/commit/9a0a26c3d841c2e69953085b67c6f0026b959853) Merge pull request #4 from FilyBox/test ### 📊 Changes **150 files changed** (+171574 additions, -1004 deletions) <details> <summary>View changed files</summary> ➖ `.env.example` (+0 -130) ➕ `Dockerfile` (+117 -0) 📝 `apps/openpage-api/package.json` (+2 -2) 📝 `apps/remix/app/components/dialogs/account-delete-dialog.tsx` (+3 -4) ➕ `apps/remix/app/components/dialogs/chat-move-to-folder-dialog.tsx` (+216 -0) 📝 `apps/remix/app/components/dialogs/document-delete-dialog.tsx` (+19 -2) ➕ `apps/remix/app/components/dialogs/folder-create-dialog-chat.tsx` (+163 -0) 📝 `apps/remix/app/components/dialogs/webhook-create-dialog.tsx` (+2 -2) 📝 `apps/remix/app/components/forms/signup.tsx` (+4 -4) ➕ `apps/remix/app/components/general/app-header-team.tsx` (+95 -0) 📝 `apps/remix/app/components/general/app-header.tsx` (+0 -1) ➕ `apps/remix/app/components/general/app-nav-desktop-team.tsx` (+99 -0) 📝 `apps/remix/app/components/general/app-nav-desktop.tsx` (+4 -0) ➕ `apps/remix/app/components/general/app-nav-mobile-team.tsx` (+96 -0) 📝 `apps/remix/app/components/general/app-nav-mobile.tsx` (+4 -0) 📝 `apps/remix/app/components/general/branding-logo.tsx` (+24 -22) ➕ `apps/remix/app/components/general/chatspace/chatspace-document-upload.tsx` (+171 -0) 📝 `apps/remix/app/components/general/document/document-certificate-qr-view.tsx` (+2 -2) 📝 `apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx` (+2 -2) 📝 `apps/remix/app/components/general/document/document-page-view-dropdown.tsx` (+3 -13) _...and 80 more files_ </details> ### 📄 Description --- name: Pull Request about: Submit changes to the project for review and inclusion --- ## Description <!--- Describe the changes introduced by this pull request. --> <!--- Explain what problem it solves or what feature/fix it adds. --> ## Related Issue <!--- If this pull request is related to a specific issue, reference it here using #issue_number. --> <!--- For example, "Fixes #123" or "Addresses #456". --> ## Changes Made <!--- Provide a summary of the changes made in this pull request. --> <!--- Include any relevant technical details or architecture changes. --> - Change 1 - Change 2 - ... ## Testing Performed <!--- Describe the testing that you have performed to validate these changes. --> <!--- Include information about test cases, testing environments, and results. --> - Tested feature X in scenario Y. - Ran unit tests for component Z. - Tested on browsers A, B, and C. - ... ## Checklist <!--- Please check the boxes that apply to this pull request. --> <!--- You can add or remove items as needed. --> - [ ] I have tested these changes locally and they work as expected. - [ ] I have added/updated tests that prove the effectiveness of these changes. - [ ] I have updated the documentation to reflect these changes, if applicable. - [ ] I have followed the project's coding style guidelines. - [ ] I have addressed the code review feedback from the previous submission, if applicable. ## Additional Notes <!--- Provide any additional context or notes for the reviewers. --> <!--- This might include details about design decisions, potential concerns, or anything else relevant. --> --- <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:19 +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#1845
No description provided.