2017-03-30 13:42:33 -04:00
|
|
|
# frozen_string_literal: true
|
2017-05-01 20:14:47 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: imports
|
|
|
|
#
|
2017-11-17 18:16:48 -05:00
|
|
|
# id :integer not null, primary key
|
2017-05-01 20:14:47 -04:00
|
|
|
# type :integer not null
|
2017-07-12 21:12:25 -04:00
|
|
|
# approved :boolean default(FALSE), not null
|
2017-05-01 20:14:47 -04: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-11-17 18:16:48 -05:00
|
|
|
# account_id :integer not null
|
2017-05-01 20:14:47 -04:00
|
|
|
#
|
2017-03-30 13:42:33 -04:00
|
|
|
|
|
|
|
class Import < ApplicationRecord
|
2017-04-16 10:28:26 -04:00
|
|
|
FILE_TYPES = ['text/plain', 'text/csv'].freeze
|
|
|
|
|
2017-03-30 13:42:33 -04:00
|
|
|
self.inheritance_column = false
|
|
|
|
|
2017-04-16 10:28:26 -04:00
|
|
|
belongs_to :account, required: true
|
2017-03-30 13:42:33 -04:00
|
|
|
|
2017-04-16 10:28:26 -04:00
|
|
|
enum type: [:following, :blocking, :muting]
|
2017-03-30 13:42:33 -04:00
|
|
|
|
2017-04-16 10:28:26 -04:00
|
|
|
validates :type, presence: true
|
2017-03-30 13:42:33 -04:00
|
|
|
|
2017-04-01 16:16:26 -04:00
|
|
|
has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV['PAPERCLIP_SECRET']
|
2017-03-30 13:42:33 -04:00
|
|
|
validates_attachment_content_type :data, content_type: FILE_TYPES
|
2017-09-02 14:45:42 -04:00
|
|
|
validates_attachment_presence :data
|
2017-03-30 13:42:33 -04:00
|
|
|
end
|