The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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