trabajo-afectivo/app/models/ticket/sets_online_notification_seen.rb
2022-01-01 14:38:12 +01:00

30 lines
927 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
# Schedules a background job to update the user's ticket seen information on ticket changes.
module Ticket::SetsOnlineNotificationSeen
extend ActiveSupport::Concern
included do
after_create :ticket_set_online_notification_seen
after_update :ticket_set_online_notification_seen
end
private
def ticket_set_online_notification_seen
# return if we run import mode
return false if Setting.get('import_mode')
# set seen only if state has changes
return false if !saved_changes?
return false if saved_changes['state_id'].blank?
# check if existing online notifications for this ticket should be set to seen
return true if !online_notification_seen_state
# set all online notifications to seen
# send background job
TicketOnlineNotificationSeenJob.perform_later(id, updated_by_id)
end
end