Restrict File types?
Closed this issue · 1 comments
shividhar commented
How do I restrict file types for certain upload such as image only (.png, .jpg, .gif...) or document file (.docx, .txt, .pdf...)
Lepozepo commented
You could do that with the file name property before passing it through the uploader, splitting the string, and checking the file termination. If you checked via the file type property you will run into a lot of issues I think. This is out of the scope of the upload function for now.