about summary refs log tree commit diff
path: root/app/models/media_attachment.rb
blob: af1a4b9af71fb66d28cf42538eed59209924d22f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class MediaAttachment < ApplicationRecord
  belongs_to :account, inverse_of: :media_attachments
  belongs_to :status,  inverse_of: :media_attachments

  has_attached_file :file
  validates_attachment_content_type :file, content_type: /\Aimage\/.*\z/

  validates :account, presence: true

  def local?
    self.remote_url.blank?
  end
end