The code powering m.abunchtell.com https://m.abunchtell.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

14 行
339 B

  1. class MediaAttachment < ApplicationRecord
  2. belongs_to :account, inverse_of: :media_attachments
  3. belongs_to :status, inverse_of: :media_attachments
  4. has_attached_file :file
  5. validates_attachment_content_type :file, content_type: /\Aimage\/.*\z/
  6. validates :account, presence: true
  7. def local?
  8. self.remote_url.blank?
  9. end
  10. end