Browse Source

Fix csv upload (#13835)

master
Takeshi Umeda 3 years ago
committed by GitHub
parent
commit
8e056bd82e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      app/models/import.rb
  2. +2
    -0
      config/initializers/paperclip.rb

+ 1
- 1
app/models/import.rb 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

+ 2
- 0
config/initializers/paperclip.rb 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 }

Loading…
Cancel
Save