__manifest__.py 713 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'CRM Livechat',
  5. 'category': 'Sales/CRM',
  6. 'summary': 'Create lead from livechat conversation',
  7. 'data': [
  8. 'data/utm_data.xml',
  9. 'data/crm_livechat_chatbot_data.xml',
  10. 'views/chatbot_script_views.xml',
  11. 'views/chatbot_script_step_views.xml',
  12. ],
  13. 'depends': [
  14. 'crm',
  15. 'im_livechat'
  16. ],
  17. 'description': 'Create new lead with using /lead command in the channel',
  18. 'auto_install': True,
  19. 'license': 'LGPL-3',
  20. 'assets': {
  21. 'mail.assets_messaging': [
  22. 'crm_livechat/static/src/models/*.js',
  23. ],
  24. },
  25. }