1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Portal Rating',
'category': 'Hidden',
'version': '1.0',
'description': """
Bridge module adding rating capabilities on portal. It includes notably
inclusion of rating directly within the customer portal discuss widget.
""",
'depends': [
'portal',
'rating',
],
'data': [
'views/assets.xml',
'views/rating_views.xml',
'views/portal_templates.xml',
'views/rating_templates.xml',
],
'auto_install': True,
'license': 'LGPL-3',
}
|