diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-25 13:13:16 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-25 13:13:16 +0100 |
commit | 71401659b812b8768fe70aa27221e3319ee1c434 (patch) | |
tree | 6a1002f53d00866f2f79564bc979d2afe9ac715b /app/services | |
parent | e3ed212b859a7bec6b26c3d52e6f7ea14069f76d (diff) |
Fix #65 - Options to block notifications from people you don't follow/who don't follow you
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/notify_service.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/services/notify_service.rb b/app/services/notify_service.rb index 772adfb90..1efd326b0 100644 --- a/app/services/notify_service.rb +++ b/app/services/notify_service.rb @@ -36,6 +36,8 @@ class NotifyService < BaseService blocked = false blocked ||= @recipient.id == @notification.from_account.id blocked ||= @recipient.blocking?(@notification.from_account) + blocked ||= (@recipient.user.settings(:interactions).must_be_follower && !@notification.from_account.following?(@recipient)) + blocked ||= (@recipient.user.settings(:interactions).must_be_following && !@recipient.following?(@notification.from_account)) blocked ||= send("blocked_#{@notification.type}?") blocked end |