blob: 45690bc9ee9cabeb4940c2870aaf681711d099c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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',
}
|