diff options
Diffstat (limited to 'addons/crm_livechat/__manifest__.py')
| -rw-r--r-- | addons/crm_livechat/__manifest__.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/addons/crm_livechat/__manifest__.py b/addons/crm_livechat/__manifest__.py new file mode 100644 index 00000000..5ffbc32f --- /dev/null +++ b/addons/crm_livechat/__manifest__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'CRM Livechat', + 'category': 'Sales/CRM', + 'summary': 'Create lead from livechat conversation', + 'data': [ + 'data/utm_data.xml', + ], + 'depends': [ + 'crm', + 'im_livechat' + ], + 'description': 'Create new lead with using /lead command in the channel', + 'auto_install': True, + 'license': 'LGPL-3', +} |
