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': 'Website profile',
'category': 'Hidden',
'version': '1.0',
'summary': 'Access the website profile of the users',
'description': "Allows to access the website profile of the users and see their statistics (karma, badges, etc..)",
'depends': [
'website_partner',
'gamification'
],
'data': [
'data/profile_data.xml',
'views/gamification_badge_views.xml',
'views/website_profile.xml',
'security/ir.model.access.csv',
],
'auto_install': False,
'license': 'LGPL-3',
}
|