trabajo-afectivo/lib/sequencer/unit/import/freshdesk/time_entry/skip.rb

23 lines
473 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Sequencer
class Unit
module Import
module Freshdesk
module TimeEntry
class Skip < Sequencer::Unit::Base
uses :time_entry_available
provides :action
def process
return if time_entry_available
state.provide(:action, :skipped)
end
end
end
end
end
end
end