12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # -*- 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/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_signature.js',
- 'portal/static/src/xml/portal_signature.xml',
- 'portal/static/src/js/portal_sidebar.js',
- 'portal/static/src/xml/portal_security.xml',
- ],
- 'web.assets_tests': [
- 'portal/static/tests/**/*',
- ],
- },
- 'license': 'LGPL-3',
- }
|