__manifest__.py 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Google reCAPTCHA integration',
  5. 'category': 'Hidden',
  6. 'version': '1.0',
  7. 'description': """
  8. This module implements reCaptchaV3 so that you can prevent bot spam on your public modules.
  9. """,
  10. 'depends': ['base_setup'],
  11. 'data': [
  12. 'views/res_config_settings_view.xml',
  13. ],
  14. 'assets': {
  15. 'web.assets_frontend': [
  16. 'google_recaptcha/static/src/scss/recaptcha.scss',
  17. 'google_recaptcha/static/src/js/recaptcha.js',
  18. # TODO remove next line in master, it was kept here as part of a
  19. # stable fix in stable but is unused in the current codebase.
  20. 'google_recaptcha/static/src/xml/recaptcha.xml',
  21. ],
  22. 'web.assets_backend': [
  23. # TODO we may want to consider moving that file in website instead
  24. # of here and/or adding it in the "website.assets_wysiwyg" bundle,
  25. # which is lazy loaded.
  26. 'google_recaptcha/static/src/xml/recaptcha.xml',
  27. ],
  28. },
  29. 'license': 'LGPL-3',
  30. }