1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-06 15:18:08 +00: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