http_log.rb 356 B

12345678910111213141516171819
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. class Sequencer
  3. class Unit
  4. module Import
  5. module Ldap
  6. module User
  7. class HttpLog < Import::Common::Model::HttpLog
  8. private
  9. def facility
  10. 'ldap'
  11. end
  12. end
  13. end
  14. end
  15. end
  16. end
  17. end