From b1e6e6957e62f3da3857f42ec6c343cb9660434d Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sun, 16 Aug 2020 23:18:38 -0500 Subject: [Federation] Include and dereference URI to the root post of threads; dynamically update thread permissions --- app/models/conversation.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/models/conversation.rb') diff --git a/app/models/conversation.rb b/app/models/conversation.rb index d1674fe4e..e065c34c8 100644 --- a/app/models/conversation.rb +++ b/app/models/conversation.rb @@ -9,6 +9,7 @@ # updated_at :datetime not null # account_id :bigint(8) # public :boolean default(FALSE), not null +# root :string # class Conversation < ApplicationRecord @@ -16,7 +17,7 @@ class Conversation < ApplicationRecord has_many :statuses has_many :mutes, class_name: 'ConversationMute', inverse_of: :conversation, dependent: :destroy - belongs_to :account, inverse_of: :threads + belongs_to :account, inverse_of: :threads, optional: true def local? uri.nil? -- cgit