21 lines
659 B
Python
21 lines
659 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Mapan Loyalty Push Notifications",
|
|
'summary': "Send push notifications to the Loyalty Flutter App",
|
|
'description': """
|
|
Integrates Odoo with Firebase Cloud Messaging (FCM) to send push notifications directly
|
|
to customers' Android devices. Maps FCM tokens to res_partner records.
|
|
""",
|
|
'author': "Mapan Group",
|
|
'category': 'Marketing',
|
|
'version': '1.0',
|
|
'depends': ['base', 'loyalty'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'wizard/push_wizard_views.xml',
|
|
'views/res_partner_views.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
}
|