__manifest__.py 752 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Website Mail Group",
  5. 'summary': "Add a website snippet for the mail groups.",
  6. 'version': '1.0',
  7. 'depends': ['mail_group', 'website'],
  8. 'auto_install': True,
  9. 'data': [
  10. 'views/snippets/s_group.xml',
  11. 'views/snippets/snippets.xml',
  12. 'views/mail_group_views.xml',
  13. 'views/website_mail_group_menus.xml',
  14. ],
  15. 'assets': {
  16. 'website.assets_wysiwyg': [
  17. 'website_mail_group/static/src/snippets/s_group/options.js',
  18. ],
  19. 'web.assets_frontend': [
  20. 'website_mail_group/static/src/snippets/s_group/000.js',
  21. ],
  22. },
  23. 'license': 'LGPL-3',
  24. }