I am using the official Filepicker gem for Rails applications and so far, if I want to specify the mimetypes as all images, I am doing it this way:
extensions: ".png,.jpg,.jpeg,.gif"
On the official documentation page on the Filepicker website, there is shown this approach:
image/*
So I've tried to use this approach for the Filepicker gem in the used notation:
extensions: "image/*"
But when I try to upload something, it gives error regarding to an incorrect file type... How to properly allow all kind of images?
Thank you