57 lines
2.1 KiB
Python
57 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Customer Portal',
|
|
'summary': 'Customer Portal',
|
|
'sequence': 9000,
|
|
'category': 'Hidden',
|
|
'description': """
|
|
This module adds required base code for a fully integrated customer portal.
|
|
It contains the base controller class and base templates. Business addons
|
|
will add their specific templates and controllers to extend the customer
|
|
portal.
|
|
|
|
This module contains most code coming from odoo v10 website_portal. Purpose
|
|
of this module is to allow the display of a customer portal without having
|
|
a dependency towards website editing and customization capabilities.""",
|
|
'depends': ['web', 'web_editor', 'http_routing', 'mail', 'auth_signup'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/mail_template_data.xml',
|
|
'data/mail_templates.xml',
|
|
'views/mail_templates_public.xml',
|
|
'views/portal_templates.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'wizard/portal_share_views.xml',
|
|
'wizard/portal_wizard_views.xml',
|
|
],
|
|
'assets': {
|
|
'web._assets_primary_variables': [
|
|
'portal/static/src/scss/primary_variables.scss',
|
|
],
|
|
'web._assets_frontend_helpers': [
|
|
('prepend', 'portal/static/src/scss/bootstrap_overridden.scss'),
|
|
],
|
|
'web.assets_backend': [
|
|
'portal/static/src/views/**/*',
|
|
],
|
|
'web.assets_frontend': [
|
|
'portal/static/src/scss/portal.scss',
|
|
'portal/static/src/js/portal.js',
|
|
'portal/static/src/js/portal_chatter.js',
|
|
'portal/static/src/xml/portal_chatter.xml',
|
|
'portal/static/src/js/portal_composer.js',
|
|
'portal/static/src/js/portal_security.js',
|
|
'portal/static/src/js/portal_sidebar.js',
|
|
'portal/static/src/xml/portal_security.xml',
|
|
'portal/static/src/js/components/**/*',
|
|
'portal/static/src/signature_form/**/*',
|
|
],
|
|
'web.assets_tests': [
|
|
'portal/static/tests/**/*',
|
|
],
|
|
},
|
|
'license': 'LGPL-3',
|
|
}
|