working UGC content upload with multi-upload support

This commit is contained in:
JakeBreath
2026-08-03 21:05:12 -05:00
parent 473b3c811b
commit 87b0d46232
18 changed files with 563 additions and 490 deletions
+9
View File
@@ -0,0 +1,9 @@
// "Edit project" page: uses the shared uploads.js engine for the thumbnail
// (single slot). The existing thumbnail is shown as a read-only preview until
// a replacement is uploaded.
(function () {
const pending = JSON.parse(
(document.getElementById('packs-pending-uploads') || { textContent: '[]' }).textContent
);
PacksUploads.init({ pending: pending });
})();