about summary refs log tree commit diff
path: root/app/models/conversation.rb
blob: e065c34c8159cf5178e9f2334d7cd5a2967f3c72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true
# == Schema Information
#
# Table name: conversations
#
#  id         :bigint(8)        not null, primary key
#  uri        :string
#  created_at :datetime         not null
#  updated_at :datetime         not null
#  account_id :bigint(8)
#  public     :boolean          default(FALSE), not null
#  root       :string
#

class Conversation < ApplicationRecord
  validates :uri, uniqueness: true, if: :uri?

  has_many :statuses
  has_many :mutes, class_name: 'ConversationMute', inverse_of: :conversation, dependent: :destroy
  belongs_to :account, inverse_of: :threads, optional: true

  def local?
    uri.nil?
  end
end