summaryrefslogtreecommitdiff
path: root/addons/website_mail_channel/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/website_mail_channel/__manifest__.py')
-rw-r--r--addons/website_mail_channel/__manifest__.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/addons/website_mail_channel/__manifest__.py b/addons/website_mail_channel/__manifest__.py
new file mode 100644
index 00000000..45690bc9
--- /dev/null
+++ b/addons/website_mail_channel/__manifest__.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+{
+ 'name': 'Website Mail Channels',
+ 'category': 'Website/Website',
+ 'summary': 'Allow visitors to join public mail channels',
+ 'description': """
+Visitors can join public mail channels managed in the Discuss app in order to get regular updates or reach out with your community.
+ """,
+ 'depends': ['website_mail'],
+ 'data': [
+ 'data/mail_template_data.xml',
+ 'views/assets.xml',
+ 'views/snippets/s_channel.xml',
+ 'views/snippets/snippets.xml',
+ 'views/website_mail_channel_templates.xml',
+ ],
+ 'license': 'LGPL-3',
+}