You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1007 B

10 years ago
10 years ago
  1. # -*- coding: utf-8 -*-
  2. # © 2012 Therp BV (<http://therp.nl>)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
  4. {
  5. "name": "LDAP Populate",
  6. "version": "10.0.1.0.0",
  7. "author": (
  8. "Therp BV",
  9. "Odoo Community Association (OCA)",
  10. ),
  11. "license": "AGPL-3",
  12. "category": 'Tools',
  13. "description": """
  14. This module allows to prepopulate the user database with all entries in the
  15. LDAP database.
  16. In order to schedule the population of the user database on a regular basis,
  17. create a new scheduled action with the following properties:
  18. - Object: res.company.ldap
  19. - Function: action_populate
  20. - Arguments: [res.company.ldap.id]
  21. Substitute res.company.ldap.id with the actual id of the res.company.ldap
  22. object you want to query.
  23. """,
  24. "depends": [
  25. 'auth_ldap',
  26. ],
  27. 'external_dependencies': {
  28. 'python': ['ldap'],
  29. },
  30. "data": [
  31. 'views/users_ldap.xml',
  32. 'views/populate_wizard.xml',
  33. ],
  34. 'installable': True,
  35. }