0
0
Fork 0

Make PuSH only distribute to subscriptions that match follower domains

Allow PuSH to distribute private toots with that condition
This commit is contained in:
Eugen Rochko 2017-02-11 15:41:39 +01:00
parent dc851c922e
commit 446aad4ce2
2 changed files with 11 additions and 2 deletions

View file

@ -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