2017-03-30 10:42:33 -07:00
|
|
|
# frozen_string_literal: true
|
2017-05-01 17:14:47 -07:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: imports
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# account_id :integer not null
|
|
|
|
# type :integer not null
|
2017-07-12 18:12:25 -07:00
|
|
|
# approved :boolean default(FALSE), not null
|
2017-05-01 17:14:47 -07:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# data_file_name :string
|
|
|
|
# data_content_type :string
|
|
|
|
# data_file_size :integer
|
|
|
|
# data_updated_at :datetime
|
|
|
|
#
|
2017-03-30 10:42:33 -07:00
|
|
|
|
|
|
|
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
|
2017-09-02 11:45:42 -07:00
|
|
|
validates_attachment_presence :data
|
2017-03-30 10:42:33 -07:00
|
|
|
end
|