summaryrefslogtreecommitdiff
path: root/addons/rating/__manifest__.py
blob: b8843f8ee90a81017144c268264a0516a2ea3a31 (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 -*-
{
    'name': 'Customer Rating',
    'version': '1.0',
    'category': 'Productivity',
    'description': """
This module allows a customer to give rating.
""",
    'depends': [
        'mail',
    ],
    'data': [
        'views/rating_rating_views.xml',
        'views/rating_template.xml',
        'views/mail_message_views.xml',
        'views/assets.xml',
        'security/ir.model.access.csv'
    ],
    'installable': True,
    'auto_install': False,
    'license': 'LGPL-3',
}