digest/__manifest__.py

29 lines
730 B
Python
Raw Normal View History

2024-05-03 15:04:23 +03:00
# -*- coding: utf-8 -*-
2024-05-21 15:09:16 +03:00
# Part of Talisman . See LICENSE file for full copyright and licensing details.
2024-05-03 15:04:23 +03:00
{
'name': 'KPI Digests',
'category': 'Marketing',
'description': """
Send KPI Digests periodically
=============================
""",
'version': '1.1',
'depends': [
'mail',
'portal',
'resource',
],
'data': [
'security/ir.model.access.csv',
'data/digest_data.xml',
'data/digest_tips_data.xml',
'data/ir_cron_data.xml',
'data/res_config_settings_data.xml',
'views/digest_views.xml',
'views/digest_templates.xml',
'views/res_config_settings_views.xml',
],
'installable': True,
'license': 'LGPL-3',
}