forked from OCA/social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
29 lines (28 loc) · 847 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-
# Copyright 2017 Simone Orsi <[email protected]>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
'name': 'Mail digest',
'summary': """Basic digest mail handling.""",
'version': '10.0.1.0.2',
'license': 'AGPL-3',
'author': 'Camptocamp,Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/social',
'depends': [
'mail',
],
'data': [
'data/ir_cron.xml',
'data/config_param.xml',
'security/ir.model.access.csv',
'security/record_rules.xml',
'views/mail_digest_views.xml',
'views/partner_views.xml',
'views/user_views.xml',
'templates/digest_default.xml',
'templates/digest_layout_preview.xml',
],
'images': [
'static/description/preview.png',
]
}