logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

unsubscribe_worker.rb (405B)


  1. # frozen_string_literal: true
  2. class Pubsubhubbub::UnsubscribeWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'push', retry: false, unique: :until_executed, dead: false
  5. def perform(account_id)
  6. account = Account.find(account_id)
  7. logger.debug "PuSH unsubscribing from #{account.acct}"
  8. ::UnsubscribeService.new.call(account)
  9. rescue ActiveRecord::RecordNotFound
  10. true
  11. end
  12. end