blob: 0078b4d29102ef6e3bfaba175bbc0922794f49af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Send SMS to Visitor',
'category': 'Website/Website',
'sequence': 54,
'summary': 'Allows to send sms to website visitor',
'version': '1.0',
'description': """Allows to send sms to website visitor if the visitor is linked to a partner.""",
'depends': ['website', 'sms'],
'data': [
'views/website_visitor_views.xml',
],
'installable': True,
'auto_install': True,
'license': 'LGPL-3',
}
|