Make PuSH only distribute to subscriptions that match follower domains
Allow PuSH to distribute private toots with that condition
This commit is contained in:
@ -95,6 +95,10 @@ class Account < ApplicationRecord
|
||||
follow_requests.where(target_account: other_account).exists?
|
||||
end
|
||||
|
||||
def followers_domains
|
||||
followers.reorder('').select('DISTINCT accounts.domain').map(&:domain)
|
||||
end
|
||||
|
||||
def local?
|
||||
domain.nil?
|
||||
end
|
||||
|
Reference in New Issue
Block a user