You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
439 B

  1. # frozen_string_literal: true
  2. class Import < ApplicationRecord
  3. FILE_TYPES = ['text/plain', 'text/csv'].freeze
  4. self.inheritance_column = false
  5. belongs_to :account, required: true
  6. enum type: [:following, :blocking, :muting]
  7. validates :type, presence: true
  8. has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV['PAPERCLIP_SECRET']
  9. validates_attachment_content_type :data, content_type: FILE_TYPES
  10. end