Skip to content
Snippets Groups Projects
Unverified Commit 8e056bd8 authored by Takeshi Umeda's avatar Takeshi Umeda Committed by GitHub
Browse files

Fix csv upload (#13835)

parent 51d8964b
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@
#
class Import < ApplicationRecord
FILE_TYPES = %w(text/plain text/csv).freeze
FILE_TYPES = %w(text/plain text/csv application/csv).freeze
MODES = %i(merge overwrite).freeze
self.inheritance_column = false
......
......@@ -111,3 +111,5 @@ else
url: ENV.fetch('PAPERCLIP_ROOT_URL', '/system') + '/:prefix_url:class/:attachment/:id_partition/:style/:filename',
)
end
Paperclip.options[:content_type_mappings] = { csv: Import::FILE_TYPES }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment