2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2021-02-15 13:55:00 +00:00
|
|
|
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
|