[PR #4121] [MERGED] Paperless ngx data connector #4528

Closed
opened 2026-02-22 18:36:00 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4121
Author: @shatfield4
Created: 7/10/2025
Status: Merged
Merged: 11/20/2025
Merged by: @timothycarambat

Base: masterHead: paperless-ngx-integration


📝 Commits (8)

  • 4767fcf paperless ngx data connector
  • 9edcf61 wip resync paperless ngx
  • 20098f1 fix generateChunkSource for resyncing paperless ngx
  • 14db277 lint
  • e8799a7 Merge branch 'master' into paperless-ngx-integration
  • 042ee57 Merge branch 'master' into paperless-ngx-integration
  • b875c48 Merge branch 'master' into paperless-ngx-integration
  • 440d497 Refactor Paperless-NGX connector

📊 Changes

16 files changed (+521 additions, -12 deletions)

View changed files

📝 collector/extensions/index.js (+20 -1)
📝 collector/extensions/resync/index.js (+30 -0)
collector/utils/extensions/PaperlessNgx/PaperlessNgxLoader/index.js (+128 -0)
collector/utils/extensions/PaperlessNgx/index.js (+128 -0)
📝 frontend/src/components/DataConnectorOption/media/index.js (+2 -0)
frontend/src/components/DataConnectorOption/media/paperless-ngx.jpeg (+0 -0)
frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/PaperlessNgx/index.jsx (+124 -0)
📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/index.jsx (+7 -0)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/Directory/FileRow/index.jsx (+4 -4)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/Directory/index.jsx (+2 -2)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/WorkspaceFileRow/index.jsx (+3 -3)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx (+17 -1)
frontend/src/media/dataConnectors/paperlessngx.png (+0 -0)
📝 frontend/src/models/dataConnector.js (+19 -0)
📝 frontend/src/utils/directories.js (+15 -1)
📝 server/endpoints/extensions/index.js (+22 -0)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #4119

What is in this change?

  • Created new data connector for importing all files from Paperless ngx instance

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/Mintplex-Labs/anything-llm/pull/4121 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 7/10/2025 **Status:** ✅ Merged **Merged:** 11/20/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `paperless-ngx-integration` --- ### 📝 Commits (8) - [`4767fcf`](https://github.com/Mintplex-Labs/anything-llm/commit/4767fcf11a208ecee6da30ab05a882b674d25b41) paperless ngx data connector - [`9edcf61`](https://github.com/Mintplex-Labs/anything-llm/commit/9edcf618bebf085b8634b7209f0882cfac41abb3) wip resync paperless ngx - [`20098f1`](https://github.com/Mintplex-Labs/anything-llm/commit/20098f1a1ee110d31c192814087d17a73173685c) fix generateChunkSource for resyncing paperless ngx - [`14db277`](https://github.com/Mintplex-Labs/anything-llm/commit/14db277b39690622b5378ed6fcdb995d52a7e0e0) lint - [`e8799a7`](https://github.com/Mintplex-Labs/anything-llm/commit/e8799a721c801e66e1fbff42e4b53041e19218d0) Merge branch 'master' into paperless-ngx-integration - [`042ee57`](https://github.com/Mintplex-Labs/anything-llm/commit/042ee57b455b44c08e9f45522ea0cf6266b3da3c) Merge branch 'master' into paperless-ngx-integration - [`b875c48`](https://github.com/Mintplex-Labs/anything-llm/commit/b875c489c5030e05f60f229e90ba4c34681cf733) Merge branch 'master' into paperless-ngx-integration - [`440d497`](https://github.com/Mintplex-Labs/anything-llm/commit/440d497d28d2011293803a790307db2c7011198f) Refactor Paperless-NGX connector ### 📊 Changes **16 files changed** (+521 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `collector/extensions/index.js` (+20 -1) 📝 `collector/extensions/resync/index.js` (+30 -0) ➕ `collector/utils/extensions/PaperlessNgx/PaperlessNgxLoader/index.js` (+128 -0) ➕ `collector/utils/extensions/PaperlessNgx/index.js` (+128 -0) 📝 `frontend/src/components/DataConnectorOption/media/index.js` (+2 -0) ➕ `frontend/src/components/DataConnectorOption/media/paperless-ngx.jpeg` (+0 -0) ➕ `frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/PaperlessNgx/index.jsx` (+124 -0) 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/index.jsx` (+7 -0) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/Directory/FileRow/index.jsx` (+4 -4) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/Directory/index.jsx` (+2 -2) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/WorkspaceFileRow/index.jsx` (+3 -3) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx` (+17 -1) ➕ `frontend/src/media/dataConnectors/paperlessngx.png` (+0 -0) 📝 `frontend/src/models/dataConnector.js` (+19 -0) 📝 `frontend/src/utils/directories.js` (+15 -1) 📝 `server/endpoints/extensions/index.js` (+22 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #4119 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Created new data connector for importing all files from Paperless ngx instance ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:36:00 -05:00
yindo closed this issue 2026-02-22 18:36:00 -05:00
yindo changed title from [PR #4121] Paperless ngx data connector to [PR #4121] [MERGED] Paperless ngx data connector 2026-06-05 15:19:01 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4528