diff options
Diffstat (limited to 'addons/website_crm_sms/__manifest__.py')
| -rw-r--r-- | addons/website_crm_sms/__manifest__.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/addons/website_crm_sms/__manifest__.py b/addons/website_crm_sms/__manifest__.py new file mode 100644 index 00000000..f980ad2c --- /dev/null +++ b/addons/website_crm_sms/__manifest__.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +{ + 'name': 'Send SMS to Visitor with leads', + 'category': 'Website/Website', + 'sequence': 54, + 'summary': 'Allows to send sms to website visitor that have lead', + 'version': '1.0', + 'description': """Allows to send sms to website visitor if the visitor is linked to a lead.""", + 'depends': ['website_sms', 'crm'], + 'data': [], + 'installable': True, + 'auto_install': True, + 'license': 'LGPL-3', +} |
