diff options
Diffstat (limited to 'app/models/account.rb')
-rw-r--r-- | app/models/account.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index 273c09833..5c1f6e7c1 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -91,6 +91,10 @@ class Account < ApplicationRecord blocking.include?(other_account) end + def requested?(other_account) + follow_requests.where(target_account: other_account).exists? + end + def local? domain.nil? end |