0
0
Fork 0

Fix csv upload (#13835)

This commit is contained in:
Takeshi Umeda 2020-05-24 16:15:23 +09:00 committed by GitHub
parent 51d8964b93
commit 8e056bd82e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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