trabajo-afectivo/lib/sequencer/unit/import/ldap/user/http_log.rb
2022-01-01 14:38:12 +01:00

19 lines
356 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Sequencer
class Unit
module Import
module Ldap
module User
class HttpLog < Import::Common::Model::HttpLog
private
def facility
'ldap'
end
end
end
end
end
end
end