forked from Mapan/odoo17e
24 lines
641 B
Python
24 lines
641 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
|
|
{
|
|
'name': 'Push notification to track listeners',
|
|
'category': 'Marketing/Events',
|
|
'sequence': 1021,
|
|
'version': '1.1',
|
|
'summary': 'Send reminder push notifications to event attendees based on favorites tracks.',
|
|
'website': 'https://www.odoo.com/app/events',
|
|
'depends': [
|
|
'website_event_social',
|
|
'website_event_track',
|
|
],
|
|
'data': [
|
|
'views/event_track_views.xml'
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'post_init_hook': 'post_init',
|
|
'license': 'OEEL-1',
|
|
}
|