18 lines
359 B
Ruby
18 lines
359 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class Sequencer
|
|
class Unit
|
|
module Common
|
|
module Provider
|
|
class Fallback < Sequencer::Unit::Common::Provider::Attribute
|
|
|
|
private
|
|
|
|
def ignore?
|
|
state.provided?(attribute) || super
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|