31 lines
699 B
Ruby
31 lines
699 B
Ruby
|
# Copyright (C) 2012-2016 Zammad Foundation, http://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
|