The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
252 B

  1. # frozen_string_literal: true
  2. class MuteWorker
  3. include Sidekiq::Worker
  4. def perform(account_id, target_account_id)
  5. FeedManager.instance.clear_from_timeline(
  6. Account.find(account_id),
  7. Account.find(target_account_id)
  8. )
  9. end
  10. end