1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-19 00:59:08 +09:00
YuruToot/lib/tasks/subscriptions.rake

14 lines
410 B
Ruby
Raw Normal View History

namespace :subscriptions do
desc "For all remote accounts that have no local followers, unsubscribe from PuSH"
task clear: :environment do
accounts = Account.where('(select count(f.id) from follows as f where f.target_account_id = accounts.id) = 0').where.not(domain: nil)
accounts.each do |a|
a.subscription('').unsubscribe
a.update!(verify_token: '', secret: '')
end
end
end