The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

15 wiersze
385 B

  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