The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

13 wiersze
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