Make PuSH only distribute to subscriptions that match follower domains
Allow PuSH to distribute private toots with that condition
This commit is contained in:
parent
dc851c922e
commit
446aad4ce2
2 changed files with 11 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue