-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Deleting uploaded files via buckets #832
Comments
Hi! Thanks for the proposal, we’ll refer to it if/when we get to working on this feature 👍 |
Thank you for the additional information, we've added the appropriate references to our backlog! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I read in discussion #112 that the ability to delete uploaded files was added to the backlog. I would like to suggest a way to do this if it has not been done. Whether or not it is within the scope of Uppy is for others to decide.
Refile, a Ruby gem for file uploads does it this way: You create two buckets on S3,
cache
andstorage
. Refile uploads directly tocache
. Once the upload form is submitted to the server, Refile issues a call to S3 to move the uploaded files fromcache
tostorage
.The
cache
bucket has an auto-expiration setting that deletes files after a certain period of time, which deletes files that belong to abandoned uploads.I'm not sure how this would work with Uppy, but I hope it was useful.
The text was updated successfully, but these errors were encountered: