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