about summary refs log tree commit diff
path: root/lib/tasks/subscriptions.rake
blob: 77cbd94d3267f76403147ef9745105d974d734fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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