Rework FEP-7888 implementation (#36064)

This commit is contained in:
Claire 2025-09-09 20:27:30 +02:00 committed by GitHub
parent 377e870348
commit e1dc960219
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 61 additions and 25 deletions

View file

@ -24,6 +24,10 @@ class Conversation < ApplicationRecord
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