http_log.rb 279 B

1234567891011121314151617
  1. class Sequencer
  2. class Unit
  3. module Import
  4. module Ldap
  5. module User
  6. class HttpLog < Import::Common::Model::HttpLog
  7. private
  8. def facility
  9. 'ldap'
  10. end
  11. end
  12. end
  13. end
  14. end
  15. end
  16. end