mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 05:53:14 -08:00
13 lines
434 B
Ruby
13 lines
434 B
Ruby
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(api_subscription_url(a.id)).unsubscribe
|
|
a.update!(verify_token: '', secret: '')
|
|
end
|
|
end
|
|
|
|
end
|