Paperclip will complain on its own if this variable is missing
This commit is contained in:
parent
60ebfa182f
commit
808017ff18
1 changed files with 1 additions and 1 deletions
|
@ -9,6 +9,6 @@ class Import < ApplicationRecord
|
||||||
|
|
||||||
FILE_TYPES = ['text/plain', 'text/csv'].freeze
|
FILE_TYPES = ['text/plain', 'text/csv'].freeze
|
||||||
|
|
||||||
has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV.fetch('PAPERCLIP_SECRET')
|
has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV['PAPERCLIP_SECRET']
|
||||||
validates_attachment_content_type :data, content_type: FILE_TYPES
|
validates_attachment_content_type :data, content_type: FILE_TYPES
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue