Odoo18-Base/addons/website_profile/__manifest__.py
2025-01-06 10:57:38 +07:00

32 lines
1004 B
Python

# -*- 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/mail_template_data.xml',
'views/gamification_badge_views.xml',
'views/website_profile.xml',
'views/website_views.xml',
'security/ir.model.access.csv',
],
'assets': {
'web.assets_frontend': [
'website_profile/static/src/scss/website_profile.scss',
'website_profile/static/src/js/website_profile.js',
],
'web.assets_tests': [
'website_profile/static/tests/tours/tour_website_profile_description.js',
],
},
'license': 'LGPL-3',
}