__manifest__.py 509 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "mail_bot_hr",
  4. 'summary': """Bridge module between hr and mailbot.""",
  5. 'description': """This module adds the OdooBot state and notifications in the user form modified by hr.""",
  6. 'website': "https://www.odoo.com/app/discuss",
  7. 'category': 'Productivity/Discuss',
  8. 'version': '1.0',
  9. 'depends': ['mail_bot', 'hr'],
  10. 'installable': True,
  11. 'auto_install': True,
  12. 'data': [
  13. 'views/res_users_views.xml',
  14. ],
  15. 'license': 'LGPL-3',
  16. }