From: Eugen Rochko Date: Sat, 1 Apr 2017 20:16:26 +0000 (+0200) Subject: Paperclip will complain on its own if this variable is missing X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=808017ff1843c200bdfcaa69634d41c6e7d47f0a;p=mastodon.git Paperclip will complain on its own if this variable is missing --- 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