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