about summary refs log tree commit diff
path: root/app/workers/activitypub/account_raw_distribution_worker.rb
blob: a84c7d21422c3cfe9aaaf4c19cb630e7ccd1562f (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ActivityPub::AccountRawDistributionWorker < ActivityPub::RawDistributionWorker
  protected

  def inboxes
    @inboxes ||= AccountReachFinder.new(@account).inboxes
  end
end