1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2025-02-24 03:31:38 +01:00
mastodon/app/workers/generate_annual_report_worker.rb

12 lines
273 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class GenerateAnnualReportWorker
include Sidekiq::Worker
def perform(account_id, year)
AnnualReport.new(Account.find(account_id), year).generate
rescue ActiveRecord::RecordNotFound, ActiveRecord::RecordNotUnique
true
end
end