28 lines
647 B
Ruby
28 lines
647 B
Ruby
# 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
|
|
# inbox_url :string
|
|
# ancestor_status_id :bigint(8)
|
|
#
|
|
|
|
class Conversation < ApplicationRecord
|
|
validates :uri, uniqueness: true, if: :uri?
|
|
|
|
has_many :statuses, dependent: nil
|
|
belongs_to :ancestor_status, class_name: 'Status', inverse_of: :owned_conversation, optional: true
|
|
|
|
def local?
|
|
uri.nil?
|
|
end
|
|
|
|
def object_type
|
|
:conversation
|
|
end
|
|
end
|