1234567891011121314151617 |
- # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- module Import
- module OTRS
- module UserFactory
- extend Import::Factory
- # rubocop:disable Style/ModuleFunction
- extend self
- # skip root@localhost since we have our own \o/
- def skip?(record, *_args)
- record['UserID'].to_i == 1
- end
- end
- end
- end
|