summaryrefslogtreecommitdiff
path: root/addons/website_sms/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/website_sms/__manifest__.py')
-rw-r--r--addons/website_sms/__manifest__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/addons/website_sms/__manifest__.py b/addons/website_sms/__manifest__.py
new file mode 100644
index 00000000..0078b4d2
--- /dev/null
+++ b/addons/website_sms/__manifest__.py
@@ -0,0 +1,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',
+}