summaryrefslogtreecommitdiff
path: root/addons/event_sms/__manifest__.py
blob: c5f5dc808d689f88dd082936fc1e6e4fe1a84792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

{
    'name': 'SMS on Events',
    'version': '1.0',
    'category': 'Marketing/Events',
    'description': """Schedule SMS in event management""",
    'depends': ['event', 'sms'],
    'data': [
        'data/sms_data.xml',
        'views/event_views.xml',
        'views/event_mail_views.xml',
        'security/ir.model.access.csv',
        'security/sms_security.xml',
    ],
    'demo': [
    ],
    'installable': True,
    'auto_install': True,
    'license': 'LGPL-3',
}