about summary refs log tree commit diff
path: root/app/models/import.rb
blob: 5384986d8119925930fa938ef5c9aea7762b2d39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class Import < ApplicationRecord
  self.inheritance_column = false

  enum type: [:following, :blocking]

  belongs_to :account

  FILE_TYPES = ['text/plain', 'text/csv'].freeze

  has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV['PAPERCLIP_SECRET']
  validates_attachment_content_type :data, content_type: FILE_TYPES
end