-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Updated the technique for handling multiple file uploads from the user #2126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ckend for further processing and storing
…ckend for further processing and storing
…ckend for further processing and storing
|
@Heisenberg-Vader is attempting to deploy a commit to the Arc53 Team on Vercel. A member of the Team first needs to authorize it. |
|
I'm running into an issue when I try to execute npm run dev with these changes When I removed the extra multiple attribute, another issue noticeable Would you mind just double-checking your local setup to make sure the build is running smoothly? |
|
Hey @ManishMadan2882! Also, there seems to have been a problem where I have removed the drag and drop functionality by mistake, I'll fix it real quick and make a commit. I apologize for such errors, its one of my first contributions. |
|
Hey! I have fixed the issue of missing drag and drop functionality and have added it back. |
ManishMadan2882
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect, Thankyou!
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2126 +/- ##
==========================================
+ Coverage 43.34% 43.55% +0.21%
==========================================
Files 140 140
Lines 9850 9883 +33
==========================================
+ Hits 4269 4305 +36
+ Misses 5581 5578 -3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
#2126) * Fixed multiple file uploads to be sent through a single request to backend for further processing and storing * Fixed multiple file uploads to be sent through a single request to backend for further processing and storing * Fixed multiple file uploads to be sent through a single request to backend for further processing and storing * Made duplicate multiple keyword fixes * Added back drag and drop functionality and it keeps the multiple file uploads
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
Feature Enhancement: Adds support for multiple file uploads in a single request to the
/api/store_attachmentendpoint.Why was this change needed? (You can also link to an open issue here)
The backend previously allowed only a single document to be uploaded at a time, limiting usability for multi-file workflows. This update introduces support for multiple file uploads in one go, addressing the functionality gap discussed in
🚀 Feature: Batch upload for attachments #2092
Other information:
post()method to handle multiple files usingrequest.files.getlist("file")attachment_idand separate Celery task for processing