1234567891011121314151617181920212223 |
- # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
- class Sequencer
- class Unit
- module Import
- module Common
- module RemoteId
- class CaseInsensitive < Sequencer::Unit::Base
- uses :remote_id
- provides :remote_id
- def process
- state.provide(:remote_id) do
- remote_id.downcase
- end
- end
- end
- end
- end
- end
- end
- end
|