Remove unused method `searchable?` on accounts (#19489)

It called the wrong methods, but nothing uses it
master
Eugen Rochko 2022-10-27 19:30:08 +02:00 committed by GitHub
parent 09f04d710d
commit 5f733ad83a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -191,10 +191,6 @@ class Account < ApplicationRecord
"acct:#{local_username_and_domain}"
end
def searchable?
!(suspended? || moved?) && (!local? || (approved? && confirmed?))
end
def possibly_stale?
last_webfingered_at.nil? || last_webfingered_at <= 1.day.ago
end