How can I check Moralis.File from dashboard?

Is it visible the file that user upload into cloud storage by Moralis.File?

I saved an image file like this.

    const file = new Moralis.File("image_test.jpg", img)
    await file.save();

    file.url() -> I can see the image

Is it possible to check all of my images on Moralis dashboard?

I don’t know exactly where that information is saved, you can also connect directly to mongo db to see how the images are saved, or search on google how it is done on parse server as parse server is what is used in the background

1 Like

You can upload the file (image) at the dashboard and check from there