diff options
Diffstat (limited to 'addons/im_livechat/__manifest__.py')
| -rw-r--r-- | addons/im_livechat/__manifest__.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/addons/im_livechat/__manifest__.py b/addons/im_livechat/__manifest__.py new file mode 100644 index 00000000..98e4d3ed --- /dev/null +++ b/addons/im_livechat/__manifest__.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +{ + 'name' : 'Live Chat', + 'version': '1.0', + 'sequence': 210, + 'summary': 'Chat with your website visitors', + 'category': 'Website/Live Chat', + 'complexity': 'easy', + 'website': 'https://www.odoo.com/page/live-chat', + 'description': + """ +Live Chat Support +========================== + +Allow to drop instant messaging widgets on any web page that will communicate +with the current server and dispatch visitors request amongst several live +chat operators. +Help your customers with this chat, and analyse their feedback. + + """, + 'data': [ + "security/im_livechat_channel_security.xml", + "security/ir.model.access.csv", + "data/mail_shortcode_data.xml", + "data/mail_data.xml", + "data/im_livechat_channel_data.xml", + 'data/digest_data.xml', + "views/rating_views.xml", + "views/mail_channel_views.xml", + "views/im_livechat_channel_views.xml", + "views/im_livechat_channel_templates.xml", + "views/res_users_views.xml", + "views/digest_views.xml", + "report/im_livechat_report_channel_views.xml", + "report/im_livechat_report_operator_views.xml" + ], + 'demo': [ + "data/im_livechat_channel_demo.xml", + 'data/mail_shortcode_demo.xml', + ], + 'depends': ["mail", "rating", "digest"], + 'qweb': [ + 'static/src/bugfix/bugfix.xml', + 'static/src/components/composer/composer.xml', + 'static/src/components/discuss_sidebar/discuss_sidebar.xml', + 'static/src/components/thread_icon/thread_icon.xml', + ], + 'installable': True, + 'auto_install': False, + 'application': True, + 'license': 'LGPL-3', +} |
