attachinary
attachinary copied to clipboard
Uploads of office documents
I can only upload pdfs but can't upload doc, excel sheets, etc. Is there a reason why?
Hello @andela-ysanni.
This should be possible using the accept
attribute in your model
Class User < ActiveRecord::Base
has_attachment :photo, accept: [:jpg, :png, :gif]
has_attachment :id_verification, accept: [:pdf, :doc, :xls]
end
Let me know if that works
@orlando I've actually tried that but when uploading,it returns an error: "Invalid file format"
This should be labeled "Bug"