-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
32 lines (30 loc) · 831 Bytes
/
__openerp__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
'name' : 'Live Chat',
'author': 'OpenERP SA',
'version': '1.0',
'summary': 'Live Chat with Visitors/Customers',
'category': 'Tools',
'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.
""",
'data': [
"security/im_livechat_security.xml",
"security/ir.model.access.csv",
"views/im_livechat_view.xml",
"views/im_livechat.xml"
],
'demo': [
"im_livechat_demo.xml",
],
'depends' : ["mail", "im_chat"],
'installable': True,
'auto_install': False,
'application': True,
}