blob: ef596133c2d1f1659d4c3cdefa115c13cb323e41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Calendar - SMS",
'summary': 'Send text messages as event reminders',
'description': "Send text messages as event reminders",
'category': 'Hidden',
'version': '1.0',
'depends': ['calendar', 'sms'],
'data': [
'security/sms_security.xml',
'data/sms_data.xml',
'views/calendar_views.xml',
],
'application': False,
'auto_install': True,
'license': 'LGPL-3',
}
|