trabajo-afectivo/lib/escalation/destination_time.rb
2022-01-01 14:38:12 +01:00

15 lines
344 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Escalation
class DestinationTime
def initialize(start_time, span, biz)
@start_time = start_time
@span = span
@biz = biz
end
def destination_time
@biz.time(@span, :minutes).after(@start_time)
end
end
end