summaryrefslogtreecommitdiff
path: root/addons/website_crm_livechat/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/website_crm_livechat/__manifest__.py')
-rw-r--r--addons/website_crm_livechat/__manifest__.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/addons/website_crm_livechat/__manifest__.py b/addons/website_crm_livechat/__manifest__.py
new file mode 100644
index 00000000..78130b9f
--- /dev/null
+++ b/addons/website_crm_livechat/__manifest__.py
@@ -0,0 +1,16 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+{
+ 'name': 'Lead Livechat Sessions',
+ 'category': 'Website/Website',
+ 'summary': 'View livechat sessions for leads',
+ 'version': '1.0',
+ 'description': """ Adds a stat button on lead form view to access their livechat sessions.""",
+ 'depends': ['website_crm', 'website_livechat'],
+ 'data': [
+ 'views/website_crm_lead_views.xml',
+ ],
+ 'installable': True,
+ 'auto_install': True,
+ 'license': 'LGPL-3',
+}