You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.0 KiB
44 lines
1.0 KiB
# 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 |
|
# parent_account_id :bigint(8) |
|
# parent_status_id :bigint(8) |
|
# |
|
|
|
class Conversation < ApplicationRecord |
|
validates :uri, uniqueness: true, if: :uri? |
|
|
|
has_many :statuses, dependent: nil |
|
|
|
belongs_to :parent_status, class_name: 'Status', optional: true, inverse_of: :owned_conversation |
|
belongs_to :parent_account, class_name: 'Account', optional: true |
|
|
|
scope :local, -> { where(uri: nil) } |
|
|
|
before_validation :set_parent_account, on: :create |
|
|
|
def to_param |
|
"#{parent_account_id}-#{parent_status_id}" unless parent_account_id.nil? || parent_status_id.nil? |
|
end |
|
|
|
def local? |
|
uri.nil? |
|
end |
|
|
|
def object_type |
|
:conversation |
|
end |
|
|
|
private |
|
|
|
def set_parent_account |
|
self.parent_account = parent_status.account if parent_status.present? |
|
end |
|
end
|
|
|