about summary refs log tree commit diff
path: root/app/models/import.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-04-01 22:16:26 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-04-01 22:16:26 +0200
commit808017ff1843c200bdfcaa69634d41c6e7d47f0a (patch)
treeb3c9fb28215bf0418d7230eb959359146477545a /app/models/import.rb
parent60ebfa182f944d5803dd6f3d54aa5e9ef24fc922 (diff)
Paperclip will complain on its own if this variable is missing
Diffstat (limited to 'app/models/import.rb')
-rw-r--r--app/models/import.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/import.rb b/app/models/import.rb
index 255063c53..5384986d8 100644
--- a/app/models/import.rb
+++ b/app/models/import.rb
@@ -9,6 +9,6 @@ class Import < ApplicationRecord
 
   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
 end