2017-03-30 17:42:33 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Import < ApplicationRecord
|
2017-04-16 14:28:26 +00:00
|
|
|
FILE_TYPES = ['text/plain', 'text/csv'].freeze
|
|
|
|
|
2017-03-30 17:42:33 +00:00
|
|
|
self.inheritance_column = false
|
|
|
|
|
2017-04-16 14:28:26 +00:00
|
|
|
belongs_to :account, required: true
|
2017-03-30 17:42:33 +00:00
|
|
|
|
2017-04-16 14:28:26 +00:00
|
|
|
enum type: [:following, :blocking, :muting]
|
2017-03-30 17:42:33 +00:00
|
|
|
|
2017-04-16 14:28:26 +00:00
|
|
|
validates :type, presence: true
|
2017-03-30 17:42:33 +00:00
|
|
|
|
2017-04-01 20:16:26 +00:00
|
|
|
has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV['PAPERCLIP_SECRET']
|
2017-03-30 17:42:33 +00:00
|
|
|
validates_attachment_content_type :data, content_type: FILE_TYPES
|
|
|
|
end
|