about summary refs log tree commit diff
path: root/app/models/conversation.rb
blob: d9ee6c8b20deb4aec5e70ff79492b0a2c250ce94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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
#  limit_replies :integer
#

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

  has_many :statuses
  has_many :kicks, class_name: 'ConversationKick', inverse_of: :conversation, dependent: :destroy

  def local?
    uri.nil?
  end
end