Project inspired by wetransfer. Covering all files operations, to be able to transfer files throught a single link.
/
: The upload page, used to upload the files, with title, message and expiration date, returns a link to the download page as result;/:uploadId
: The download page to select wich files you want to download, or download a zip file with everything included;
POST /upload
: Handle the files with the option to include title and message;GET /upload/:uploadId
: Returns the sent upload data with a list of files;GET /download/upload/:uploadId
: Downloads a zip with the uploaded files included;GET /download/file/:fileId
: Downloads the specified file from the uploaded data;