From e8875c6046615778c7ae6f1fc0c4a195fb5d3a03 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 30 Mar 2017 19:42:33 +0200 Subject: Import feature for following/blocking lists (addresses #62, #177, #201, #454) --- app/models/import.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 app/models/import.rb (limited to 'app/models/import.rb') diff --git a/app/models/import.rb b/app/models/import.rb new file mode 100644 index 000000000..255063c53 --- /dev/null +++ b/app/models/import.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +class Import < ApplicationRecord + self.inheritance_column = false + + enum type: [:following, :blocking] + + belongs_to :account + + FILE_TYPES = ['text/plain', 'text/csv'].freeze + + has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV.fetch('PAPERCLIP_SECRET') + validates_attachment_content_type :data, content_type: FILE_TYPES +end -- cgit From 808017ff1843c200bdfcaa69634d41c6e7d47f0a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 1 Apr 2017 22:16:26 +0200 Subject: Paperclip will complain on its own if this variable is missing --- app/models/import.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/models/import.rb') 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 -- cgit