trabajo-afectivo/app/models/ticket/enqueues_user_ticket_counter_job.rb

31 lines
700 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
# Adds a background job to update the user's ticket counter on ticket changes.
module Ticket::EnqueuesUserTicketCounterJob
extend ActiveSupport::Concern
included do
after_commit :enqueue_user_ticket_counter_job
end
private
def enqueue_user_ticket_counter_job
# return if we run import mode
return true if Setting.get('import_mode')
return true if BulkImportInfo.enabled?
return true if destroyed?
return true if !customer_id
# send background job
TicketUserTicketCounterJob.perform_later(
customer_id,
UserInfo.current_user_id || updated_by_id,
)
end
end