mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-24 05:22:03 +02:00
Initial commit: Security packages
This commit is contained in:
commit
bb469e4763
1399 changed files with 278378 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Google reCAPTCHA integration',
|
||||
'category': 'Hidden',
|
||||
'version': '1.0',
|
||||
'description': """
|
||||
This module implements reCaptchaV3 so that you can prevent bot spam on your public modules.
|
||||
""",
|
||||
'depends': ['base_setup'],
|
||||
'data': [
|
||||
'views/res_config_settings_view.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'google_recaptcha/static/src/scss/recaptcha.scss',
|
||||
'google_recaptcha/static/src/js/recaptcha.js',
|
||||
'google_recaptcha/static/src/js/signup.js',
|
||||
# TODO remove next line in master, it was kept here as part of a
|
||||
# stable fix in stable but is unused in the current codebase.
|
||||
'google_recaptcha/static/src/xml/recaptcha.xml',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
# TODO we may want to consider moving that file in website instead
|
||||
# of here and/or adding it in the "website.assets_wysiwyg" bundle,
|
||||
# which is lazy loaded.
|
||||
'google_recaptcha/static/src/xml/recaptcha.xml',
|
||||
'google_recaptcha/static/src/scss/recaptcha_backend.scss',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue