__manifest__.py 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Customer Portal',
  5. 'summary': 'Customer Portal',
  6. 'sequence': '9000',
  7. 'category': 'Hidden',
  8. 'description': """
  9. This module adds required base code for a fully integrated customer portal.
  10. It contains the base controller class and base templates. Business addons
  11. will add their specific templates and controllers to extend the customer
  12. portal.
  13. This module contains most code coming from odoo v10 website_portal. Purpose
  14. of this module is to allow the display of a customer portal without having
  15. a dependency towards website editing and customization capabilities.""",
  16. 'depends': ['web', 'web_editor', 'http_routing', 'mail', 'auth_signup'],
  17. 'data': [
  18. 'security/ir.model.access.csv',
  19. 'data/mail_template_data.xml',
  20. 'data/mail_templates.xml',
  21. 'views/portal_templates.xml',
  22. 'views/res_config_settings_views.xml',
  23. 'wizard/portal_share_views.xml',
  24. 'wizard/portal_wizard_views.xml',
  25. ],
  26. 'assets': {
  27. 'web._assets_primary_variables': [
  28. 'portal/static/src/scss/primary_variables.scss',
  29. ],
  30. 'web._assets_frontend_helpers': [
  31. ('prepend', 'portal/static/src/scss/bootstrap_overridden.scss'),
  32. ],
  33. 'web.assets_backend': [
  34. 'portal/static/src/views/**/*',
  35. ],
  36. 'web.assets_frontend': [
  37. 'portal/static/src/scss/portal.scss',
  38. 'portal/static/src/js/portal.js',
  39. 'portal/static/src/js/portal_chatter.js',
  40. 'portal/static/src/xml/portal_chatter.xml',
  41. 'portal/static/src/js/portal_composer.js',
  42. 'portal/static/src/js/portal_signature.js',
  43. 'portal/static/src/xml/portal_signature.xml',
  44. 'portal/static/src/js/portal_sidebar.js',
  45. 'portal/static/src/xml/portal_security.xml',
  46. ],
  47. 'web.assets_tests': [
  48. 'portal/static/tests/**/*',
  49. ],
  50. },
  51. 'license': 'LGPL-3',
  52. }