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

20 lines
505 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
# Ensures pending time is always zero-seconds.
module Ticket::ResetsPendingTimeSeconds
extend ActiveSupport::Concern
included do
before_save :ticket_reset_pending_time_seconds
end
private
def ticket_reset_pending_time_seconds
return true if pending_time.blank?
return true if !pending_time_changed?
return true if pending_time.sec.zero?
self.pending_time = pending_time.change sec: 0
end
end