Fix csv upload (#13835)

lolsob-rspec
Takeshi Umeda 2020-05-24 16:15:23 +09:00 committed by GitHub
parent 4a262cefeb
commit e2694a18c7
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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 }