31 lines
844 B
Python
31 lines
844 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Inbox Notification Email",
|
|
'summary': "Send both Odoo notification and email notification",
|
|
'description': """
|
|
This module adds one more option to send notifications via both
|
|
Odoo's in-app notifications and email.
|
|
""",
|
|
'author': "Odoozone",
|
|
'website': "http://odoozone.com/",
|
|
'category': "Discuss",
|
|
'version': "18.0.1.0.0", # updated for Odoo 18
|
|
'depends': ["mail"],
|
|
'license': "LGPL-3",
|
|
'data': [
|
|
# "security/ir.model.access.csv",
|
|
"views/views.xml",
|
|
"views/templates.xml",
|
|
],
|
|
'demo': [
|
|
"demo/demo.xml",
|
|
],
|
|
'images': [
|
|
"static/description/banner.PNG",
|
|
"static/description/icon.png",
|
|
"static/description/image1.png",
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
}
|