You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduce a functionality in CBWIRE to specify and enforce a file upload size limit.
Details:
The enhancement involves the ability to set a maximum file size for uploads in CBWIRE. Currently, when a file upload is initiated, CBWIRE requests a signed upload URL and receives the file's size. This process presents an opportunity to implement size checks before the upload proceeds.
An application requires users to upload profile pictures. To optimize storage and bandwidth, a size limit of 200KB is set for these images. When a user attempts to upload a file, CBWIRE checks the file size against this limit before proceeding with the upload.
Expected Functionality:
File Size Verification: On receiving the initial upload request, CBWIRE verifies the file size against a pre-set maximum limit.
Upload Approval/Denial: If the file size is within the allowed range, the upload proceeds. Otherwise, the upload is denied, and the user is notified of the size limitation.
Customizable Limits: Allow administrators or developers to set and modify the file size limits as per application requirements.
The text was updated successfully, but these errors were encountered:
Objective:
Introduce a functionality in CBWIRE to specify and enforce a file upload size limit.
Details:
The enhancement involves the ability to set a maximum file size for uploads in CBWIRE. Currently, when a file upload is initiated, CBWIRE requests a signed upload URL and receives the file's size. This process presents an opportunity to implement size checks before the upload proceeds.
Initial Incoming Request:
Example Use Case:
An application requires users to upload profile pictures. To optimize storage and bandwidth, a size limit of 200KB is set for these images. When a user attempts to upload a file, CBWIRE checks the file size against this limit before proceeding with the upload.
Expected Functionality:
File Size Verification: On receiving the initial upload request, CBWIRE verifies the file size against a pre-set maximum limit.
Upload Approval/Denial: If the file size is within the allowed range, the upload proceeds. Otherwise, the upload is denied, and the user is notified of the size limitation.
Customizable Limits: Allow administrators or developers to set and modify the file size limits as per application requirements.
The text was updated successfully, but these errors were encountered: