about summary refs log blame commit diff
path: root/app/models/conversation.rb
blob: 4dfaea889da495963fe4146b1ce344c1dc9c2e6a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                             
                                                     




                                        
                                             





                    
# 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
#

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

  has_many :statuses

  def local?
    uri.nil?
  end
end