Hello guys, is it possible to upload multiply imag...
# help
d
Hello guys, is it possible to upload multiply images to storage at once?
Copy code
await supabaseAdmin.storage
        .from("gallery")
        .upload(
          `${post.category}/${post.categoryChild}/${post.file[0].name}`,
          post.file[0]
        );
Right now i just upload one, but i want to be able to upload multiply, is that possible?
n
Hello @Dembe! This thread has been automatically created from your message in #843999948717555735 a few seconds ago. We have already mentioned the @User so that they can see your message and help you as soon as possible! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates. Want to change the title? Use the ``/title`` command! We have solved your problem? Click the button below to archive it.
s
At the moment you can only pass one file
path
to the
upload
function.